Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用数字和类似的东西
num1 = Float.parseFloat(txt1.getText());
但我希望从文本字段中获取单词,然后根据哪个单词进行计算。喜欢:
String input1; if (input1.equalsIgnorecase("Word")) { 2 + 2; }
我只是不知道如何在 jform 上做到这一点。
正如@MadProgrammer 所指出的, .getText() 将帮助您从测试字段中检索字符串值。
例如,如果您的 Java 表单包含一个变量名为 jTextField1 的文本字段,您可以通过以下方式从中检索值:
String input1 = jTextFielf1.getText();
仅供参考,
float num1 = Float.parseFloat(txt1.getText());
也做同样的事情,它首先从文本字段中获取字符串值并将其转换为浮点值。