I want to get a String input from user.
I do it like
String username= TEXT.getText();
String password = PASSWORD.getText();
both are in String. but it doesn't work. if I write it in
String username= String.parseString(TEXT.getText());
String password= String.parseString(PASSWORD.getText());
Is that correct? and the TEXT and PASSWORD here is a JTextField

