Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this java program where I transform with TransformerFactory a XML string that I get from a SQL Server database and write it to a file, and then use this file to generate a PDF.

The thing is that it works fine when I execute it with netbeans, but if I execute the jar in the project dist folder I get a "Invalid byte 2 of 4-byte UTF-8 sequence".

After changing the encoding of the XML string to UTF-8 now it works fine from the jar too.

So my question is, why would it work when running the project in NetBeans but not from the JAR file before changing the encoding?

Have tried this only in Windows.

Code:

Here is the SQL Server query (original):

SQLXML xml = null;
String xmlString = "";
while (rs.next()){
    xml = rs.getSQLXML(1);
    xmlString = xml.getString();
}
return xmlString;

...and modified:

SQLXML xml = null;
String xmlString = "";
while (rs.next()){
    xml = rs.getSQLXML(1);
    // Note explicit UTF-8 encoding specified
    xmlString = new String(xml.getString().getBytes(),"UTF8");
 }
 return xmlString;

And here the transformation:

public static void serialize(Document doc, OutputStream out) throws Exception {
    TransformerFactory tfactory = TransformerFactory.newInstance();
    try {
        Transformer serializer = tfactory.newTransformer();
        serializer.setOutputProperty("indent", "yes");
        serializer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
        serializer.transform(new DOMSource(doc), new StreamResult(out));
    } catch (TransformerException e) {
        e.printStackTrace();
        throw new RuntimeException(e);
    }
}
share|improve this question
1  
Are you, by chance, using one of the conversion mechanisms that uses a "platform specific default encoding"? (e.g. it is assuming UTF-8 for something UTF-16.) And, is the JVM used the same in both instances? Posting the relevant code would be ... useful. – user166390 Nov 10 '11 at 2:07
Thanks for answering! Added code now. I'm not sure about that, what would one of those mechanisms be? I think SQLServer returns the xml string unicode encoded, so that's why I get that error, but why would it work through netbeans without changing the encoding? – Daniel Montes de Oca Nov 10 '11 at 2:22
I bet a different JVM is being used in each case: can that proposition be confirmed or rejected? – user166390 Nov 10 '11 at 2:24
That could be it! Thanks a lot, let me check this out and I'll get back to you. What would be the easiest way to confirm this? – Daniel Montes de Oca Nov 10 '11 at 2:28
I don't use netbeans :) But java -version should spit out useful things. – user166390 Nov 10 '11 at 2:40
show 5 more comments

1 Answer

up vote 2 down vote accepted

I've tried a simple Application in Netbeans that displays the Charset.defaultCharset(), and it returns "UTF-8". The same one in Eclipse returns "MacRoman". I'm on a Mac, on Windows it'd return "cp-1252".

So yes, when you run an Application in Netbeans, it defaults to UTF-8 encoding, that's why you didn't have any issues when parsing the XML.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.