Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
2k views

Recommend an alternative to jTidy?

We have a java widget that does some basic parsing on arbitrary xhtml documents, and we've been using jTidy to clean them up before processing. For a couple of reasons (which are outside the scope of ...
3
votes
1answer
113 views

Parsing HTML on Android, major performance issues

I need to parse about 100 kB of HTML data and this simply causes huge performance issues on Android. I've tried both the built-in XML parser and JTidy. The built-in XML parser gives me a parsing time ...
3
votes
1answer
87 views

how to set parse duration limit to document object in java

I am using Jtidy parser in java.Here is my code... URL url = new URL("www.yahoo.com"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); InputStream in = conn.getInputStream(); ...
2
votes
2answers
172 views

Pretty print (“indentation-only”) HTML documents in Java (no JTidy)

We're generating HTML files out of apaches velocity generic template engine. The generated HTML is kind of ugly and not with correcht indentation. In my case I've got the HTML stored in a String ...
2
votes
2answers
280 views

XPath How to retrieve the value of a table cell from html document

I have a html document and somewhere inside the doc is below a table, I can get the table rows and java DOM objects. What is not clear to me is how to extract the value of the table cell when the ...
2
votes
3answers
145 views

how to take title text from any web page in java

I am using java to fetch the title text from web page. I have fetched image from web page using Tag name as follows: int i=1; InputStream in=new URL("www.yahoo.com").openStream(); ...
2
votes
2answers
1k views

JTidy upgrade broke document xpaths

I just updated to the newest version of jtidy which came out in october and it seems to have broken my document object for unknown reasons. This is my code: tidy = new Tidy(); ...
1
vote
1answer
58 views

Issue with title text in Java

I have used Jtidy parser in java to fetch the title text. String titleText=null; try { titleText = doc.getElementsByTagName("title").item(0) .getFirstChild().getNodeValue(); } catch ...
1
vote
2answers
48 views

How to open particular link on clicking a image in java?

I am using Jtidy parser to get the image from web page in java. URL url = new URL("www.yahoo.com"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); InputStream in = ...
1
vote
1answer
89 views

JTidy node processing

I'm using JTidy in order to parse web page data. My question is the following: It is possible to call the XPath.evalate method on a previously retrieved node? I'll explain better. Usually you use ...
1
vote
1answer
105 views

problem in reading <TITLE> tag from web page in java

I am using jtidy parser to parse the web page. It is working, sort of: InputStream in=new URL("http://www.medicinenet.com/alopecia_areata/article.htm").openStream(); Document doc= new ...
1
vote
1answer
248 views

How to clean up an XML file for Java parsing by putting quotes around attributes

I have a series of xml files that looks something like this: <ROOT> <F P=100> Some text here </F> <F P=101> More text </F> ... </ROOT> I'm trying to ...
1
vote
1answer
706 views

jTidy and TagSoup documentation

I'm looking for documentation (officially documentation if it is possible) for TagSoup and jTidy libraries. I want use this libraries to manipulate html "tagsoup" files that include xml tags with ...
1
vote
1answer
79 views

Sitemap using sax and webcrawler

Hi everyone this is my first question here and im not a programmer. I would like to generate a sitemap. I am crawling a website with webcrawler (crawler.dev.java.net). Is there any way to use a sax ...
1
vote
3answers
2k views

Proper usage of JTidy to purify HTML

I am trying to use JTidy (jtidy-r938.jar) to sanitize an input HTML string, but I seem to have problems getting the default settings right. Often strings such as "hello world" end up as "helloworld" ...
1
vote
3answers
2k views

How to change HTML tag content in Java?

How can I change HTML content of tag in Java? For example: before: <html> <head> </head> <body> ...
1
vote
1answer
1k views

using JTidy with Maven2

I am working on a Java project using spring2 and Maven. I have already incorporated JSLint4Java into Maven, but now find myself needing to do some further validation. There are a number of core ...
1
vote
1answer
168 views

xpaths not working in java

I am trying to access a url, get the html from it and use xpaths to get certain values from it. I am getting the html just fine and Jtidy seems to be cleaning it appropriately. However, when I try to ...
0
votes
0answers
12 views

Selecting a html+css parser

Can JTidy parse custom html tags & css tags in Java? The file needs to be parsed as html and not xml. I need a Java parser that can comprehend html and css. Please Suggest
0
votes
0answers
11 views

How to add new tags to JTidy?

I am trying to use jTidy for extract data from (real world)HTML.But jTidy doesnt parse custom tags. <html> <body> <myCustomTag>some text</myCustomTag> ...
0
votes
0answers
25 views

jTidy returns nothing after tidying HTML

I have come across a very annoying problem when using jTidy (on Android). I have found jTidy works on every HTML Document I have tested it against, except the following: <!DOCTYPE html> ...
0
votes
0answers
5 views

How to let jtidy not convert Chinese characters into html entities?

I have some html to convert by jtidy, which contains some Chinese characters: <font>怎么回事</font> But the result looks like: ...
0
votes
0answers
28 views

how to remove error log in Jtidy?

I use code below for jtidy. Tidy tidy = new Tidy(); tidy.setQuiet(true); tidy.setShowWarnings(false); doc = tidy.parseDOM(in, null); it can remove all warning log but i still get error log ...
0
votes
5answers
87 views

Fastest way to traverse or find elements in DIV HTML

I am writing an utility which should hit the URL of a dynamic page, retrieve the content, search for a specific div tag in various nested div tags and grab the content. Mainly, I am looking for some ...
0
votes
2answers
49 views

Parsing links with JTidy

I am currently using JTidy to parse an HTML document and fetch a collection of all anchor tags in the given HTML document. I then extract the value of each tag's href attribute to come up with a ...
0
votes
1answer
38 views

Comments getting escaped with NekoHTML (or JTidy) + XOM

I'm using NekoHTML to clean up some HTML, and then feeding it to XOM to get an object model. Somewhere in the course of this, comments are getting escaped. Here's a relevant example of the input HTML ...
0
votes
1answer
90 views

Malformed XML/HTML parsing

I need to parse a multiple(read approx 1600) HTML pages and pull out the contents of the following tag from each file. textarea name="line" cols="66" rows="5" class="textbox" id="line" ...
0
votes
1answer
170 views

how to extract data using jtidy and xpath

i have to extract d company name and face value from http://money.rediff.com/companies/20-microns-ltd/15110088 i noticed that this task could be accomplished using xpath api. since this is an ...
0
votes
1answer
45 views

Connect to website using nodes

I'm trying to write a program that will connect to a website, get the source code, look for the <body> tag using nodes. Within that tag there are three "textfields" that I want to input values ...
0
votes
0answers
59 views

Problem in Jtidy usage

I have to convert my html document which is created like save as .html from ms-word file into well formed html.but all content is treated as text in output html file and this is big problem. What ...
0
votes
1answer
168 views

jTidy - Pretty Printing without Head, Title Tags

I am trying to use jTidy to pretty print on a HTML snippet that I have. So far I have done the following. protected String prettyPrintHTML(String rawHTML) { Tidy tidy = new Tidy(); ...
0
votes
0answers
36 views

JTidy equivalent of tidy -c option: replace FONT, NOBR and CENTER tags by CSS

Is it somehow supported in JTidy or should I look elsewhere? I need to convert the presentational tags to CSS, not only remove them (as JTidy does by default).
0
votes
0answers
162 views

how to hide the error messages on console in java

hi I am using Jtidy parser in java to get the image. Tidy tidy = new Tidy(); tidy.setQuiet(true); tidy.setShowWarnings(false); doc = tidy.parseDOM(in, null); Above code is working ...
0
votes
3answers
324 views

how to remove the warnings in Jtidy in java

I am using Jtidy parser in java. URL url = new URL("www.yahoo.com"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); InputStream in = conn.getInputStream(); doc = new ...
0
votes
0answers
155 views

how to fix the issue->'Premature end of JPEG file' in java

hi I am using Jtidy parser to fetch the image in java. URL url = new URL("www.yahoo.com"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); InputStream in = ...
0
votes
2answers
81 views

how to set image size while fetching from the web page in java

hi I am fetching the image from the web page using Jtidy in java. This is the my code: URL url = new URL("http://www.yahoo.com"); HttpURLConnection conn=(HttpURLConnection) ...
0
votes
1answer
101 views

how to fetch base url from the given url using java

I am trying to fetch base URL using java. I have used jtidy parser in my code to fetch the title. I am getting the title properly using jtidy, but I am not getting the base url from the given URL. I ...
0
votes
1answer
111 views

JTidy and XHTML 1.1: is it possible?

I need to transform HTML into XHTML 1.1. I'm doing it in a Java program and so I decided to use JTidy. But if you tell JTidy to transform output in XHTML, you get an XHTML 1.0 not an XHTML 1.1. I've ...
0
votes
2answers
83 views

JTidy preserve CSS rules

Looking for a way to take some html like: <html> <head> <style> *.td { font-weight: bold; } </style> </head> ...
0
votes
0answers
159 views

How to fix the issue 'mvn package' generating “[WARNING] line 5 column 2 - Warning: plain text isn't allowed in <head> elements”

I am not sure how to fix this problem because the warning messages are not very helpful - there is no indication of what files are causing the problem. [WARNING] line 5 column 2 - Warning: plain text ...
0
votes
1answer
252 views

Android SDK and XQuery?

Is there any implementation of XQuery known to work with the Android SDK? I tried mxquery, but had no luck. I did not expect it to work as their site says Andriod support comming soon. I'm unsing ...
0
votes
0answers
884 views

Make JTidy leave XML alone, while converting HTML to XHTML

I'm trying to build a module that transforms HTML and XML via XSLT. I'm using the latest stable version of JTidy. I've pasted the code that deals with JTidy below: if (in != null) { if ...
0
votes
1answer
225 views

JTidy: how to process specific tag

I'm processing bad-formated HTML pages with JTidy. I am only interested in fixing a specific set of tags, for example <img> <table>. Is there anyway to tell JTidy to focus on only those ...
0
votes
3answers
2k views

can anybody post tutorial links for jtidy to convert xhtml to xml

can anybody give sample program for converting xhtml doc to xml using jtidy in java. or otherwise post the tutorial link for using jtidy
0
votes
2answers
597 views

How to best use JTidy with a Spring servlet container?

I have a Java servlet container using the Spring Framework. Pages are generated from JSPs using Spring to wire everything up. The resulting HTML sent to the user isn't as, well, tidy as I'd like. ...
0
votes
2answers
1k views

JTidy Node.findBody() — How to use?

I'm trying to do XHTML DOM parsing with JTidy, and it seems to be rather counterintuitive task. In particular, there's a method to parse HTML: Node Tidy.parse(Reader, Writer) And to get the ...