I am using JSOUP (java tool for XML files) and I am using following code to read an URL that is saved in a XML file. here are my codes:
Document d = Jsoup.parse(new File("feed.xml"), null);
Element elementCat = d.getElementsByTag("cat").get(0);
String stringUrl = elementCat.ownText();
System.out.println(stringUrl);
the XML input file is like this:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<root>
<cat>http://www.isna.ir/ISNA/FullNews.aspx?SrvID=Event&Lang=P</cat>
</root>
my problem is that the output of program is this: http://www.isna.ir/ISNA/FullNews.aspx?SrvID=Event⟪=P instead of this: http://www.isna.ir/ISNA/FullNews.aspx?SrvID=Event&Lang=P
In other words, it converts "&Lang" to "⟪" automatically. Please pay attention that it is not "⟪", it's just "&Lang" without semicolon. I want to disable encoding or escaping and I want the raw data.
How can I solve this problem?