vote up 8 vote down star
9

Is there a way to embed a browser in Java?

flag

8 Answers

vote up 10 vote down check

I believe JWebPane is going to be the official way to embed a browser into a java app. Its based on the open sourced engine - WebKit, which is used in Apples Safari and Googles Chrome browsers.See this blog for details.

link|flag
As for march 3 2009, this is still not possible. – Oscar Reyes Apr 4 at 1:37
As of 9/21/2009, this is still not possible. – jrhicks Sep 22 at 1:51
vote up 4 vote down

You could use SWT for your GUI. Its Browser control allows you to embed IE, Mozilla or Safari (depending on the platform you're running in) with little pain.

link|flag
vote up 2 vote down

You may try this: https://jdic.dev.java.net/

alt text

Or this: http://lobobrowser.org/java-browser.jsp

alt text

link|flag
vote up 1 vote down

You can try Webrenderer or Ice Browser

link|flag
Ice Browser is not actually sold anymore, the product has reached End of Life – willcodejavaforfood Jun 23 at 15:50
vote up 1 vote down

I have successfully opened a browser from Java using SWT. You can find code examples of how to use SWT to open a Browser window. It's very easy to do.

link|flag
vote up 1 vote down

By far the most robust embeddable browser I am familiar with is the one in SWT. In fact, it is so flexible that the JavaDoc hover you can see in Eclipse is actually a browser, and the JavaDoc view actually supports things like animation!

The only risk with using SWT is that there are different versions of the SWT library for different platforms. I'm not sure if there is a singl jar you could include to cover everyone.

link|flag
vote up 1 vote down

You can embed a browser in a Swing/AWT GUI using the JDIC API. I don't see any mention of OS X, so it may not be of use to you.

link|flag
vote up 1 vote down

Take a look at https://xhtmlrenderer.dev.java.net/

link|flag

Your Answer

Get an OpenID
or

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