Tagged Questions

7
votes
2answers
14k views

Creating an XML document using namespaces in Java

I am looking for example Java code that can construct an XML document that uses namespaces. I cannot seem to find anything using my normal favourite tool so was hoping someone may be able to help me ...
5
votes
2answers
3k views

DTD download error while parsing XHTML document in XOM

I am trying to parse an HTML document with the doctype declared to use the transitional dtd as follows: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
3
votes
1answer
275 views

XPath Expression returns nothing for //element, but //* returns a count

I'm using XOM with the following sample data: Element root = cleanDoc.getRootElement(); //find all the bold elements, as those mark institution and clinic. Nodes nodes = root.query("//*"); <html ...
3
votes
3answers
798 views

XOM v/s javax.xml.parsers

i want to do read simple XML file .i found http://stackoverflow.com/questions/528664/simple-way-to-do-xml-in-java There are also several parsers available just wanted to make sure that what are the ...
2
votes
2answers
143 views

Both XPath/getChildElements failed to get XML child in XOM

I've to parse an OAI-PMH XML file, which looks like the following. I would like to iterate over all <record> nodes in ListRecord. <?xml version="1.0" encoding="UTF-8"?> <OAI-PMH ...
2
votes
5answers
108 views

Java - Difference between for loop terminating expression

I'm just curious: Is there a difference on speed and performance between this two loops implementation? Assume that size() method returns the length of the array,collection, or object that handles a ...
2
votes
1answer
448 views

Writing GraphML with XOM?

I'm trying to write out a graphML document with XOM in java, but I can't figure out how to get all of the namespace declarations correct. To have valid graphML, I need to have a root element that ...
2
votes
2answers
523 views

How do I marshal a JAXB object to XOM?

I'm trying to figure out what bits I need to plug together to marshal a JAXB POJO to a XOM document, and vice versa. The JAXB Marshaller interface's marshal methods take various targets, such as ...
2
votes
2answers
1k views

How to stream XML data using XOM?

Say I want to output a huge set of search results, as XML, into a PrintWriter or an OutputStream, using XOM. The resulting XML would look like this: <?xml version="1.0" encoding="UTF-8"?> ...
1
vote
1answer
28 views

Query Node in XOM

I am querying document in XOM, getting a Node, and then querying this Node for another Node. However, querying Node behaves like it's querying whole document, not only this node. XML is like this: ...
1
vote
4answers
163 views

java getting elements from xpath

Hi i want to get data from xpath query Element location = (Element) doc.query("//location[location_name='"+ locationName +"']/*").get(0).getDocument().getRootElement(); ...
1
vote
0answers
23 views

How to use XOM to refs a tag value?

if I have a document like : <Car belongTO="$Jacky" id="autobus"> <colour>red</colour> </Car> ..... <User id="jacky"> <Passport>1111</Passport> ...
1
vote
2answers
236 views

How to set namespace only on first tag with XOM?

I am using XOM to build XML documents in Java. I have created a simple XML document, and I want an XML namespace. But when I set the namespace on the first tag, an empty namespace is set on the ...
1
vote
1answer
101 views

Easy way to convert an org.apache.xmlbeansXmlObject to nu.xom.Element

I have used the scomp tool from XMLBeans to generate java classes and then populated the fields in an XmlObject (I wrote this code some time ago). I now need to convert this object into the Element ...
1
vote
1answer
212 views

Setting a custom XOM EntityResolver

I need to not validate against a doctype, so I'd like to set a custom EntityResolver that accepts everything. I'm getting data back from tagsoup, so I know my data is well-formed and correct. ...
1
vote
1answer
992 views

Tagsoup and XOM on android

Can i use Tagsoup and XOM on android 1.6 without any performance problems ?
0
votes
2answers
64 views

Java How to extract a complete XML block

Using this XML example: <A> <B> <id>0</id> </B> <B> <id>1</id> </B> </A> I want a simple method to extract the XML block ...
0
votes
2answers
43 views

Having Element.toXML() properly indented instead of showing the resulting string just as a single line?

The default behavior of Element.toXML() seems to be showing up the result as a single line. Is it possible to have it show the result in multiple lines, in a hierarchical way? Example: This is what ...
0
votes
1answer
21 views

XOM.nu settings close tags format

How can I set uп Xom.nu in such a way that elements are closed like so: <Node></Nodes> and not <Node/>. The reason why I want to do it in this way is that this XML is going to be ...
0
votes
2answers
66 views

Ignoring DTD when parsing XML

How can I ignore the DTD declaration when parsing file with XOM xml library. My file has the following line : <?xml version="1.0"?> <!DOCTYPE BlastOutput PUBLIC "-//NCBI//NCBI ...
0
votes
1answer
46 views

Finding the exact location of an Element in a XML-Document

I'm looking for a way to find the exact location of an Element within a XML-Document. I parse my Document with XOM and process it in the usual way. The tricky thing is, that in the XML document, some ...
0
votes
1answer
61 views

XOM: is Builder.build() thread safe?

Is Builder.build() thread safe? I couldn't find any info in XOM Javadoc.
0
votes
0answers
68 views

XOM and Problem with Canonical XML

I'm making a java application that checks if a XML file is already canonical or not using XOM. In my tests I have the following file wich is already canonical. <doc ...
0
votes
3answers
140 views

How do I take off the XML version tag in the XOM library for Java?

I'm writing a small application in Java that uses XOM to output XHTML. The problem is that XOM places the following tag before all the html: <?xml version="1.0" encoding="UTF-8"?> I've read ...
0
votes
1answer
64 views

JAVA XOM Geting amount of child

<?xml version="1.0" encoding="UTF-8"?> <locations> <location id="83"> <location_name>name</location_name> <company_name>company ...
0
votes
4answers
424 views

Best way to parse large XML document in Jython

I need to parse a large (>800MB) XML file from Jython. The XML is not deeply nested, containing about a million relevant elements. I need to convert these elements into real objects. I've used ...
0
votes
1answer
397 views

Java+XSL, calling Java code from within template

I'm working with XSL templates in Java, and I'm trying to build a custom tag that will call some Java code, then put a result inside the template. I'm using XOM as my XML engine. I'm kind of new with ...
0
votes
3answers
307 views

convert nu.XOM.Element to org.w3c.dom.Element

Is it possible to convert nu.XOM.Element to org.w3c.dom.Element? Am trying to construct XML using XOM APIs. But few of my legacy APIs expects org.w3c.dom.Element. So, I just want to know if I can ...
0
votes
2answers
220 views

XOM getting attribute from Node?

Shouldn't something like this work? Assuming a document formatted as such: <root> <element id = "a"></element> </root> Node node = doc.query("/root/element").get(0); ...
0
votes
2answers
251 views

XOM get Document to String

Suppose I have a String like this String from = "<time><day type="tt">ok</day><time> Now what I would like to do is, create a XOM document and then retrun back something ...
0
votes
2answers
2k views

How to parse (non well-formed) HTML in android?

How to parse non well-formed HTML in android ? I tried to use XOM and TagSoup, but i get the following error when creating the Builder: 11-26 20:42:39.294: ERROR/dalvikvm(1298): Could not find ...
0
votes
1answer
233 views

Using XOM with NetBeans

I am attempting to install XOM so I can use it in my Java apps. The only problem is, I don't know where I can place it so NetBeans can find it. It would make sense to put it where the other .classes ...