public static Document parseXml(String xmlRequest) throws DocumentException {
Reader source = new StringReader(xmlRequest);
SAXReader reader = new SAXReader();
return reader.read(source);
}
This blog contains the essential and useful methods that I found during my working on the Java Desktop Applications. Moreover, all the useful information for Java Devs are organized here. All of the methods presented here is my own idea and my own implementation. You are free to copy or use all of the methods present in this blog. All the comment and suggestion are welcome.
No comments:
Post a Comment