HTML with Java

Is it possible to mix HTML with java when creating an application? For example I make a java browser like thing for the HTML and I use the HTML tocreate the interface only. Everything else is Java. For example I want to the text boxes, buttons, links, etc in HTML. But everything is processed and stored using Java.

If this is possible, I'd appreciate it if anyone can point to any tutorials or articles.

Thanks :)

[444 byte] By [morelloa] at [2007-10-2 4:05:17]
# 1
Have a look at JEditorPane. It can show some simple HTML and you can register listeners for when links are clicked. I am not sure about form processing but it would probably have ways of handling that as well.Brian
brh0001a at 2007-7-15 23:28:01 > top of Java-index,Desktop,Core GUI APIs...
# 2
Well, for labels you format it using html as in:Label label = new Label( "<html>some html stuff" );You can also embed an actual browser in a panel using org.jdesktop.jdic.browser
mitekea at 2007-7-15 23:28:01 > top of Java-index,Desktop,Core GUI APIs...