Swing components inside HTML - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T09:35:28Z http://stackoverflow.com/feeds/question/431579 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/431579/swing-components-inside-html 0 Swing components inside HTML Dev er dev http://stackoverflow.com/users/31141 2009-01-10T19:25:13Z 2009-01-15T21:59:59Z <p>Does anybody know of a pure java (ar at least cross platform) open source component/library which displays HTML which can contain swing components inside it?</p> <p>All I could find were either abandoned or incomplete.</p> <p>I am asking because I'm thinking about trying out approach to do use this combination for creating desktop application.</p> <p>EDIT:Seems like this question is missunderstood, so let me clarify it. I basically want to create desktop application in the similar way as web. Idealy I would like browser to serve as an UI layer. That browser should allow me to embed my own compoents, eg to be able to use JTextField instead of &lt;input type="text"&gt;. </p> <p>Since I don't know of such easily usable browser, I was asking for a html component which will let me do it. I hop the question is clearer right now.</p> http://stackoverflow.com/questions/431579/swing-components-inside-html/431853#431853 2 Answer by kenoa for Swing components inside HTML kenoa http://stackoverflow.com/users/53770 2009-01-10T22:04:35Z 2009-01-10T22:04:35Z <p>I think the question is the other way around or, better, goes further than using JTextPane. As I understand the question: Marko needs a Java component that can display HTML and additionally is able to contain further Swing components. Say, there should be a new tag </p> <pre><code>&lt;swing jclass="MySwingComponent" /&gt; </code></pre> <p>which would render that MySwingComponent class. Not sure, maybe it would also be okay to have a HTML-able Swing component that can embed further applets?</p> <p>And no, I don't know of such a thing. Sorry.</p> http://stackoverflow.com/questions/431579/swing-components-inside-html/431862#431862 1 Answer by willcodejavaforfood for Swing components inside HTML willcodejavaforfood http://stackoverflow.com/users/51382 2009-01-10T22:11:21Z 2009-01-10T22:11:21Z <p>JavaFX maybe?</p> http://stackoverflow.com/questions/431579/swing-components-inside-html/431906#431906 -1 Answer by duffymo for Swing components inside HTML duffymo http://stackoverflow.com/users/37213 2009-01-10T22:47:52Z 2009-01-10T22:47:52Z <p>I thought <a href="http://code.google.com/webtoolkit/overview.html" rel="nofollow">Google Web Toolkit</a> allowed you to write a UI in terms of Java/Swing. It would then convert it to JavaScript. Maybe that's what you're looking for.</p> http://stackoverflow.com/questions/431579/swing-components-inside-html/432068#432068 2 Answer by Dave Ray for Swing components inside HTML Dave Ray http://stackoverflow.com/users/40310 2009-01-11T01:01:08Z 2009-01-11T01:01:08Z <p>JEditorPane already supports what you want to do. It can render HTML (pretty crappily, I'll admit) and you can embed Swing components in that HTML using the &lt;object> tag. Here is a blog post that demonstrates this technique: <a href="http://weblogs.java.net/blog/aim/archive/2007/07/index.html" rel="nofollow">http://weblogs.java.net/blog/aim/archive/2007/07/index.html</a></p> <p>Otherwise, I don't think you have a lot of options.</p> http://stackoverflow.com/questions/431579/swing-components-inside-html/448641#448641 0 Answer by Kendrick Wilson for Swing components inside HTML Kendrick Wilson http://stackoverflow.com/users/13633 2009-01-15T21:59:59Z 2009-01-15T21:59:59Z <p>check out xhtmlrenderer: https://xhtmlrenderer.dev.java.net/</p> <p>You will have to work wit it to get it to do all you want.</p>