I am trying to send the following utf-8 encoded XML to a rest api that is implemented using JAX-RS in Java.
The XML data:
<?xml version="1.0" encoding="UTF-8"?>
<incomingData><Text>καλημέρα</Text></incomingData>
Then I am trying to parse data using the following REST API call:
@PUT()
@Produces(MediaType.TEXT_XML)
@Consumes(MediaType.TEXT_XML)
public void print(@QueryParam("printerID") int printerID,
InputStream requestBodyStream) {
IncomingData StudentData = null;
try {
JAXBContext jaxbContext =
JAXBContext.newInstance(IncomingData.class);
Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
StudentData = (IncomingData) jaxbUnmarshaller.unmarshal(requestBodyStream);
} catch (JAXBException e) {
e.printStackTrace();
}
try {
System.out.println(new String(StudentData.Text.getBytes(), "UTF-8"));
} catch (UnsupportedEncodingException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
In order to easily parse the XML contents, I am also using this JAXB annotated class:
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class IncomingData {
@XmlElement(name = "Text")
String Text = new String();
}
However the contents of the Text XML tag is still displayed as ????? when I am printing it's contents as a UTF-8 encoded string.
How can I solve the problem?
new String(StudentData.Text.getBytes(), "UTF-8")? Doesn'tStudentData.Textcontain your String? Besides:StudentDatais not a valid variable name. They start with lower-case letters or_. – user647772 Oct 19 '12 at 13:23