我正在制作一个GUI程序。在我的第一个程序中,我有以下代码:
double num1;
num1 = Double.parseDouble(guess.getText());
我相信此代码从文本字段中获取值并将其转换为double。
如何获取值并将其转换为String或Char?
答案 0 :(得分:2)
由于getText()
已经返回String
,因此将其值存储为String
是微不足道的。
为了解析double
,您已经完成了该操作,只需注意NumberFormatException
,如果输入无效。
将其值存储为char
,具体取决于您的要求。你想要第一个角色吗?你是否要求字符串只有一个字符?任何角色都有效吗?等等。
// Storing the value as a String.
String value = guess.getText();
// Storing the value as a double.
double doubleValue;
try {
doubleValue = Double.parseDouble(value);
} catch (NumberFormatException e) {
// Invalid double String.
}
// Storing the value as a char.
char firstChar = value.length() > 0 ? value.charAt(0) : (char) 0;
// Require the String to have exactly one character.
if (value.length() != 1) {
// Error state.
}
char charValue = value.charAt(0);
答案 1 :(得分:1)
使用String.valueOf()而不是Double.parseDouble()这将帮助您将double转换为字符串值
答案 2 :(得分:0)
getText()
已经将文本作为String返回。
顺便说一下,由于解析错误,请注意异常。但是你走在正确的轨道上。 :)
答案 3 :(得分:0)
getText()
方法返回一个String。当你使用.parseDouble
时你正在做的是将用户输入的字符串转换为double,因此在字符串的情况下你不必使用.parse方法,因为调用的值已经是一个字符串。对于角色,你必须使用这样的东西:
String text = jTextField1.getText();
if (text.length() > 1 && !text.contains(" ") && !text.contains(",")) {
//make sure that its length is not over 1, and that it has no spaces and no commas
char ch = text;
} else {
//if a space or comma was found no matter how big the text it will execute the else..
System.out.println("this is not allowed");
jTextField1.setText("");
}
答案 4 :(得分:-1)
getText()
函数已从String
获取Textfield
值。
例如:
String var = guess.getText();
此处,var
正在存储从String
收到的Textfield
值。