I'm working on extracting ISO-8559-2 encoded text from an XML. It works fine, however, there are some special characters which use their corresponding HTML code. The XML file:
<?xml version="1.0" encoding="iso-8859-2"?>
<!DOCTYPE TEI.2 SYSTEM "http://mek.oszk.hu/mekdtd/prose/TEI-MEK-prose.dtd">
<!-- ?xml-stylesheet type="text/xsl" href="http://mek.oszk.hu/mekdtd/xsl/boszorkany_txt.xsl"? -->
<TEI.2 id="MEK-00798">
    <text type="novel">
        <front>
            <titlePage>
                <docAuthor>Jókai Mór</docAuthor>
                <docTitle>
                    <titlePart>Az arany ember</titlePart>
                </docTitle>
            </titlePage>
        </front>
        <body>
            <div type="part">
                <head>
                    <title>A Szent Borbála</title>
                </head>
                <div type="chapter">
                    <head>
                        <title>I. A VASKAPU</title>
                    </head>
                    <p text-align="justify">A kitartó hetes vihar. – Ez járhatlanná teszi a Dunát a Vaskapu
                        között.
                    </p>
                </div>
            </div>
        </body>
    </text>
</TEI.2>
A snippet of the code I use:
        SAXReader reader = new SAXReader();
        reader.setEncoding("ISO-8859-2");
        Document document = reader.read(file);
        Node node = document.selectSingleNode("//*[@type='chapter']/p");
        String text = node.getStringValue();
        // String text = org.jsoup.parser.Parser.unescapeEntities(node.getStringValue(), true);
        // String text = org.apache.commons.lang3.StringEscapeUtils.unescapeHtml4(node.getStringValue());
I also included in comments some libraries I tried, without any success.
What I want to see is: A kitartó hetes vihar. - Ez járhatlanná teszi a Dunát a Vaskapu között. What I see when I debug is: A kitartó hetes vihar . Ez járhatlanná teszi a Dunát a Vaskapu között.