tags:

views:

327

answers:

4

Where can I find information like how to make input text, input password, radiobutton, checkbox and textarea in a software made with java?

+1  A: 

Here is a good set of Sun tutorials.

akf
Please note the [html] tag, I don't think Swing is appropriate here.
Josef
good point, if this is for HTML, i will delete the answer, if it is for 'software made with java' this would be fitting.
akf
I used the html tag, because I took the names input text, input password, radiobutton, checkbox and textarea from html and I didn't know how to talk about them with java terms.
Delirium tremens
The original question did not mention HTML or Swing. Yes it's in the tag but should have been mentioned in the question.
Steve Kuo
A: 

It depends on the GUI toolkit you are using.

You've tagged this HTML, so if you are generating webpages — just output the HTML for the form controls you want.

http://www.w3.org/TR/html4/interact/forms.html

David Dorward
A: 

It depends on what framework you choose to use for your web application. The Java EE Tutorial is a good place to start and it covers Servlets, JSP and Java Server Faces. Other web-enabling frameworks include:

Josef
A: 

checkout this site is for all java enthusiats: link text

jbendahan