JTextField text=new JTextField();
text.gettext();
//我想要text.gettext(); value是一个浮点值来计算问题。怎么把它当成??
答案 0 :(得分:1)
为了从文本字段中读取浮点数,您可以采用两种方式。
String a=text.getText();//Create a string to store the incoming data
float f = Float.parseFloat(a);// to cast the data
其他
float f = Float.parseFloat(text.getText);