Any project on HTML Rendering?

HiI have to browse HTML 4.0 pages (which contain frames) in my app but unfortunately JEditorPane supports HTML very poorly, so my question is whether there are any projects in the NET on HTML rendering? My search on the net gave no proper results.Please help
[279 byte] By [xlinuksa] at [2007-11-26 14:26:12]
# 1
Maybe the JDesktop Integration Components (JDIC) project may help you:https://jdic.dev.java.net/Annette
Annettea at 2007-7-8 2:19:21 > top of Java-index,Desktop,Core GUI APIs...
# 2

thanks for the reply,

I wonder if it worked for you, cause in my case I didn't manage to use it in my app, cuase it's getting the a NullPointerException at

BrowserEngineManager bem = BrowserEngineManager.instance();

here-> webBrowser = bem.getActiveEngine().getWebBrowser();

hmm.. maybe it's supposed to run from withni a web browser..

xlinuksa at 2007-7-8 2:19:21 > top of Java-index,Desktop,Core GUI APIs...
# 3
I did not use BrowserEngineManager yet. So I can say nothing. I have only in mind, that there are some restrictions like you must have Mozilla installed or something like that.... I do not remember exactly.....
Annettea at 2007-7-8 2:19:21 > top of Java-index,Desktop,Core GUI APIs...
# 4
Ok, thanks for your time. Before posting this thread I came across your post (I think) and I thought you solved it somehow, however I'll try to write it from scratch although I'm pretty sure that it's too complicated, but at least I'll give it a try!!
xlinuksa at 2007-7-8 2:19:21 > top of Java-index,Desktop,Core GUI APIs...
# 5

Here is some URL that might help in the support of HTML Frames:

look at the Java Help 2.0 and

http://osdir.com/ml/classpath-patches@gnu.org/msg09517.html

And not sure if this bug has been resolved yet: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4950344

If you come up with a Example Program (SSCCE) and post it would be great!

jalzabrewera at 2007-7-8 2:19:21 > top of Java-index,Desktop,Core GUI APIs...
# 6

thanks for the links

even if the frameset bug is gonna get fixed in the near time it doesn't support a lot of tags, so I gotta try implement my 'browser', it won't support JavaScript, but it WILL support HTML4 and CSS!. I need it for my little app which I started and without this feature it looks incomplete [ http://forum.java.sun.com/thread.jspa?threadID=5120552 ]

If I finish it I will let you know.

xlinuksa at 2007-7-8 2:19:21 > top of Java-index,Desktop,Core GUI APIs...
# 7

You might not appreciate it, but I've tried Browse under Eclipse SWT...it wraps your browser inside a Java application ... really cool, and perfect. It's also possible to run .js from Java.

As it wraps your actual browser, if it's IE7, XML+Styles works perfect.

Look up...alse there's something to work with SWT and Swing.

jsasma at 2007-7-8 2:19:21 > top of Java-index,Desktop,Core GUI APIs...