jEditorPane as a web browser

泄露秘密 提交于 2019-11-29 06:40:38

JEditorPane has limited html and css support. It does not support javascript or applets. It is not intended to be used as a web browser. Sun promised a JWebPane that would be closer to a browser, but it has never been released.

If you are really willing to implement a browser in java, join some open source java browser project like Lobo browser. This way you can apply your knowledge in a right direction. There is no point doing it from scratch.

The JEditorPane can only render very basic HTML. (Even as of SE6, it only understands HTML 3.2—a standard from 1997!) JEditorPane cannot embed applets or Flash, nor can it interpret JavaScript.

As a matter of fact, JEditorPane was written to be a widget in which to edit rich text (ie. text of varying sizes with simple formatting like boldface and italics), not something to render HTML, CSS, and etc.

You may want to try JDIC's embeddable browser instead.

Have you tried SWT? It uses the systems default browser or I believe you can specify Mozilla or Apple's browser(I'm not an Apple fan and cant think of the name right now). Its not coding it from scratch and they must have another browser installed but in Java I think that's your best option. You can find various libraries that incorporate both Swing and SWT with a simple google search so you don't have to choose between the two.

JavaFX seems to handle this. Has this been tried?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!