我有一个gpa程序,它使用equalsIgnoreCase()
方法,它比较两个字符串,字母“a”到用户输入,检查它们是否放“a”。但是现在我想添加一个异常,并在输入数字时执行错误消息。我希望程序认识到整数输入与字符串不同并给出错误消息。我可以使用哪些方法将类型 String 变量与 int 类型的输入进行比较,并抛出异常?
答案 0 :(得分:65)
http://www.coderanch.com/t/405258/java/java/String-IsNumeric
探讨了很多选项还有一个
public boolean isNumeric(String s) {
return s != null && s.matches("[-+]?\\d*\\.?\\d+");
}
可能有点矫枉过正,但Apache Commons NumberUtils似乎也有一些助手。
答案 1 :(得分:32)
如果您被允许使用第三方库,请提出以下建议。
NumberUtils.isDigits(str:String):boolean
NumberUtils.isNumber(str:String):boolean
答案 2 :(得分:7)
使用此
public static boolean isNum(String strNum) {
boolean ret = true;
try {
Double.parseDouble(strNum);
}catch (NumberFormatException e) {
ret = false;
}
return ret;
}
答案 3 :(得分:6)
您也可以使用ApacheCommons StringUtils.isNumeric - http://commons.apache.org/proper/commons-lang/javadocs/api-2.6/org/apache/commons/lang/StringUtils.html#isNumeric(java.lang.String)
答案 4 :(得分:5)
使用以下方法,
public static boolean isNumeric(String str)
{
try
{
double d = Double.parseDouble(str);
}
catch(NumberFormatException nfe)
{
return false;
}
return true;
}
如果您想使用正则表达式,可以使用如下,
public static boolean isNumeric(String str)
{
return str.matches("-?\\d+(\\.\\d+)?"); //match a number with optional '-' and decimal.
}
答案 5 :(得分:4)
简单方法:
public boolean isBlank(String value) {
return (value == null || value.equals("") || value.equals("null") || value.trim().equals(""));
}
public boolean isOnlyNumber(String value) {
boolean ret = false;
if (!isBlank(value)) {
ret = value.matches("^[0-9]+$");
}
return ret;
}
答案 6 :(得分:3)
public static boolean isNumeric(String string) {
if (string == null || string.isEmpty()) {
return false;
}
int i = 0;
int stringLength = string.length();
if (string.charAt(0) == '-') {
if (stringLength > 1) {
i++;
} else {
return false;
}
}
if (!Character.isDigit(string.charAt(i))
|| !Character.isDigit(string.charAt(stringLength - 1))) {
return false;
}
i++;
stringLength--;
if (i >= stringLength) {
return true;
}
for (; i < stringLength; i++) {
if (!Character.isDigit(string.charAt(i))
&& string.charAt(i) != '.') {
return false;
}
}
return true;
}
答案 7 :(得分:2)
我最后在我的程序中编写了这个小方法,所以我可以检查字符串是否为数字或者至少每个字符都是数字。
private boolean isNumber(String text){
if(text != null || !text.equals("")) {
char[] characters = text.toCharArray();
for (int i = 0; i < text.length(); i++) {
if (characters[i] < 48 || characters[i] > 57)
return false;
}
}
return true;
}
答案 8 :(得分:1)
您可以使用Character.isDigit(char ch)方法,也可以使用正则表达式。
以下是摘录:
public class CheckDigit {
private static Scanner input;
public static void main(String[] args) {
System.out.print("Enter a String:");
input = new Scanner(System.in);
String str = input.nextLine();
if (CheckString(str)) {
System.out.println(str + " is numeric");
} else {
System.out.println(str +" is not numeric");
}
}
public static boolean CheckString(String str) {
for (char c : str.toCharArray()) {
if (!Character.isDigit(c))
return false;
}
return true;
}
}
答案 9 :(得分:0)
以下是检查输入是否包含数字的方法:
if (input.matches(".*\\d.*")) {
// there's a digit somewhere in the input string
}
答案 10 :(得分:0)
要检查所有int字符,您只需使用双重否定字符。 if(!searchString.matches(“[^ 0-9] + $”))...
[^ 0-9] + $检查是否有任何非整数字符,因此如果测试失败则测试失败。只是不那样,你就成功了。