0
votes
1answer
35 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): …
0
votes
1answer
15 views
Tagsoup and XOM on android
Can i use Tagsoup and XOM on android 1.6 without any performance problems ?
0
votes
1answer
13 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 ro …
1
vote
1answer
76 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 t …
3
votes
3answers
123 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 sur …
1
vote
1answer
952 views
DTD download error while parsing XHTML document in XOM
Hello,
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"
" …
1
vote
2answers
200 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" encodin …
0
votes
1answer
71 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 …
