In my XML file, I have a tag that has the special char
<journal>Universität Trier</journal>
When I run the SAX Parser, I realized that it will divide the String into 2
String 1: Universit
String 2: ät Trier
However I need to read the content as one whole String in order to properly store in Database. I can't have it split into 2 String. Why does SAX Parser do this anyway?
Following method is part of the SAX parser that does the Reading
public void characters(char ch[], int start, int length) throws SAXException
{
...
}