0
How can i get string value from text field in java applet??
If it is integer value we can use int a= Integer.parseInt(t.getText()). now tell me what is the syntax for string
2 Respuestas
- 1
string a = t.getText();
it is already in string form, no need for extra stuff