Most voted "jdom" questions
3 questions
Sort by count of
-
1
votes1
answer274
viewsJava - Add information in XML file with Jdom
In this code an xml file is created and an element is inserted: comentarios = new Element("comentarios"); myDocument = new Document(comentarios); comentario = new Element("comentario");…
-
0
votes1
answer345
viewsJava - Change XML and then read
I have an application that writes in an XML and one that reads, the two work well separately, but the problem is that when I write in XML, the other application keeps reading without updating the…
-
0
votes1
answer361
viewsJava - read XML from a URL
I have a function that reads XML and it works 100%, the problem is that when I try to read an XML that is online on my server I cannot. Follows code: public int lerXml() throws JDOMException,…