I am working on building a web browser in Java. I have used a parser (JTIDY) to parse the HTML page into a DOM document. I know that rendering means the graphical representation of DOM document. But I don't know what the engineering process is for HTML rendering in Java. In Java there is a JEditorkit to parse and render, but it is not well-formed. So I want a better solution.

My question is: what is the actual process of HTML rendering and showing the complete web page in Java?

link|improve this question

70% accept rate
Why are you doing this? Maybe there is some easier way around the problem. – Mike Miller Nov 23 '10 at 16:28
I am developing a web browser in java.At-first I was using cobra api to parse and render it.It can compile the java-script contents.But now I am having a problem to add cookie to browser.Cobra has no cookie facility.I could not access the URL-Connection from outside of the api for sending cookie to server.So I thought to render it by myself.But many people said it is not a good idea because it is a huge task.So I am confused.If you have any suggestion please tell me. – DPD Nov 23 '10 at 17:38
feedback

2 Answers

up vote 1 down vote accepted

You can try either the Cobra renderer & parser or Flying Saucer project.

link|improve this answer
Do you use Cobra before ? – DPD Nov 24 '10 at 5:38
feedback

There is the pretty much vaporware JWebPane that is part of JavaFX, but who knows when and if that will ever come out.

You can use MozSwing which integrates the Mozilla rendering framework with the Java Swing toolkit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.