Here I have some code responsible for fetching the attribute value:
currPost.Body = reader.getAttributeValue("", "Body");
so, Body is the very attribute my problem is based on.
My XML file represents SQL Server dump and is in the form as follows:
<?xml version="1.0" encoding="utf-8"?>
<posts>
<row Id="1" PostTypeId="1" AcceptedAnswerId="65" CreationDate="2011-05-24T19:28:37.853" Score="13" ViewCount="964" Body="<p>Sehr viele Märchen beginnen auf Deutsch mit "Es war einmal", aber ich kenne auch ein Märchen, das anfängt mit "Zu der Zeit, als das Wünschen noch geholfen hat ...".</p>

<p>Gibt es noch andere Beginnformeln und wenn ja, kann man diese dem geographischen Ursprung der Märchen zuordnen?</p>

<blockquote>
 <p>Many German fairy tales open with
 "Es war einmal", but some start with
 "Zu der Zeit, als das Wünschen noch
 geholfen hat ...".</p>
 
 <p>Are there any other common
 introductions? If so, is there a correlation between their use and the geographic origin of the story?</p>
</blockquote>
" OwnerUserId="4" LastEditorUserId="2" LastEditDate="2011-05-25T05:39:54.580" LastActivityDate="2011-05-25T11:56:08.270" Title="Gibt es andere übliche Märchenbeginnformeln neben "es war einmal"?" Tags="<regional>" AnswerCount="2" CommentCount="2" FavoriteCount="4" />
The problem itself is that when I retrieve the "Body" value - I always get a shortened string which is missing lot of characters/symbols.
Take a look at the Body value. It is
Body="<p>Sehr viele Märchen beginnen auf Deutsch mit "Es war einmal", aber ich kenne auch ein Märchen, das anfängt mit "Zu der Zeit, als das Wünschen noch geholfen hat ...".</p>

<p>Gibt es noch andere Beginnformeln und wenn ja, kann man diese dem geographischen Ursprung der Märchen zuordnen?</p>

<blockquote>
 <p>Many German fairy tales open with
 "Es war einmal", but some start with
 "Zu der Zeit, als das Wünschen noch
 geholfen hat ...".</p>
 
 <p>Are there any other common
 introductions? If so, is there a correlation between their use and the geographic origin of the story?</p>
</blockquote>
"
So, when I just print with System.out.println() I get only this
<p>Sehr viele Märchen beginnen auf Deutsch mit "Es war einmal", aber ich kenne auch ein Märchen, das anfängt mit "Zu der Zeit, als das Wünschen noch geholfen hat ...".</p>
As you can see - the Body value contains html tags. Can this be the problem? And how do I go about it?
Or maybe there are any other resolutions?
Thanks a lot!