Java Swing Browser must support JavaScript

In my company, I am implementing a java browser based on java. I found many tools to create full Swing-only browsers that look like Mozilla. But I could not find a browser that supports JavaScript. The browser that I am implementing must execute JavaScript inside the sides of the HTML.

Do you know a tool that supports this? Or do you know a parser that connects javascript with what I can use inside an html browser?

I know that eclipse plugins can handle javascript, but I cannot use AWT in my project.

Thank you for your help.

+3
source share
3 answers

I would watch Lobo . Looks like you just want it. It has HTML rendering and parser, as well as Javascript support. If it doesn't have the Javascript function you need, it seems that it will be easier to contribute to Lobo rather than reinvent the wheel.

+2
source

You do not want to build it yourself. Fortunately, there are several open source javascript mechanisms that you could adapt.

+3
source

In my company I use java based html browser.

God why?

However, this page on java.net discusses some options; You can search for it more broadly.

+2
source

All Articles