Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
65 views

How to create the following XML tag through DOM in Java

<tableCategory> <item app_name="APPNAME1i" desc="BDESC1" lang="1ODDD"/> </tableCategory> In the above xml tag, I want to add one more item as follows- <item ...
2
votes
1answer
587 views

How to skip well-formed for java DOM parser

I know this has been asked multiple times here, but I've a different issue dealing with it. In my case, the app receives a non well-formed dom structure passed as a string. Here's a sample : <div ...
2
votes
2answers
357 views

Changing default implementation of org.w3c.dom.Document?

I need to change the default implementation within my project for org.w3c.dom.Document I followed this link : http://www.huihoo.org/jboss/online_manual/3.0/ch13s135.html to change the default ...
1
vote
2answers
388 views

How to parse <img src=“value” from this XML by using DOM?

It look like this in XML. I want to get he Image src value... <description><![CDATA[<div class="images"><img ...
1
vote
2answers
100 views

How is the DOM parsed? [closed]

Possible Duplicate: If you're not supposed to use Regular Expressions to parse HTML, then how are HTML parsers written? My question is simple: How do current DOM parsers actually parse ...
1
vote
5answers
7k views

Android: Parsing XML DOM parser. Converting childnodes to string

Again a question. This time I'm parsing XML messages I receive from a server. Someone thought to be smart and decided to place HTML pages in a XML message. Now I'm kind of facing problems because I ...
0
votes
2answers
36 views

getting stackoverflowerror while converting org.w3c.dom.Document to org.dom4j.Document

I am getting stackoverflowerror while conveting org.w3c.dom.Document to org.dom4j.Document Code : public static org.dom4j.Document getDom4jDocument(Document w3cDocument) { ...
0
votes
1answer
23 views

difference between org.w3c.dom.Document and org.dom4j.Document

why we need this two Document 1) org.w3c.dom.Document 2) org.dom4j.Document What is difference between this two ? public static org.dom4j.Document getDom4jDocument(Document w3cDocument) { ...
0
votes
4answers
40 views

Parsing XML file stored in internal storage using DOM parser in android.

I have created an xml file in the device's internal storage as described on the android developers website. I now want to parse the file using DOM parser. What do i need to do to make the DOM parser ...
0
votes
3answers
618 views

Remove <p>&nbsp;</p> with DOM or regex

How can I remove this type p tag <p>&nbsp;</p> using DOM or regex? I want to remove multiple p like this too, <p>&nbsp;</p> <p>&nbsp;</p> ...
0
votes
1answer
206 views

How to read the particular XML tag from DOM parser in java <example mentioned>

The xml is - <?xml version="1.0" encoding="UTF-8"?> <app_content> <app_type value="Browser"> <item> ...
0
votes
2answers
338 views

android dom parser issue

i have this rss feed to parse that contains several tags. i am able to retrieve the value (child element) for all except for the description tag node. please find below the rss feed ...
0
votes
1answer
510 views

Android parsing HTML entities using DOM parser for RSS feed

I am using the google books api for an Android app that I am building. This is a sample of the XML file <dc:description>This trilogy includes &amp;quot; The Hitchhiker&amp;#39;s Guide ...
0
votes
5answers
345 views

regex: match string only if not part of a tag

I am trying to match a string only if it is not part of an html tag. For example when searching for the string: "abc". <a href="foo.html">abc def</a> should match <p> foo bar foo ...