Swing components inside HTML - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T09:35:28Zhttp://stackoverflow.com/feeds/question/431579http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/431579/swing-components-inside-html0Swing components inside HTMLDev er devhttp://stackoverflow.com/users/311412009-01-10T19:25:13Z2009-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 <input type="text">. </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#4318532Answer by kenoa for Swing components inside HTMLkenoahttp://stackoverflow.com/users/537702009-01-10T22:04:35Z2009-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><swing jclass="MySwingComponent" />
</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#4318621Answer by willcodejavaforfood for Swing components inside HTMLwillcodejavaforfoodhttp://stackoverflow.com/users/513822009-01-10T22:11:21Z2009-01-10T22:11:21Z<p>JavaFX maybe?</p>
http://stackoverflow.com/questions/431579/swing-components-inside-html/431906#431906-1Answer by duffymo for Swing components inside HTMLduffymohttp://stackoverflow.com/users/372132009-01-10T22:47:52Z2009-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#4320682Answer by Dave Ray for Swing components inside HTMLDave Rayhttp://stackoverflow.com/users/403102009-01-11T01:01:08Z2009-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 <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#4486410Answer by Kendrick Wilson for Swing components inside HTMLKendrick Wilsonhttp://stackoverflow.com/users/136332009-01-15T21:59:59Z2009-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>