I am reading an XML file from a url\[code\]DocumentBuilderFactory factory = DocumentBuilderFactory .newInstance();DocumentBuilder builder;Document document;document = builder.parse("http://mywebsite.com/someXML.xml");\[/code\]Everything works fine. I could traverse through all the nodes. But the problem comes when there is other language in the XML file (Ex: Japanese). I could not get the content in the specified language. I should probably set the input i am getting to Unicode. Could anyone solve this.