您的位置:首页 > 其它

几种判断整数和字符串的方法

2008-03-27 14:22 288 查看
原文地址

http://www.blogjava.net/rain1102/archive/2006/10/18/75880.html

//判断是否是整数

// 方法1
public static boolean isNumeric(String s)
{
if((s != null)&&(s!=""))
return s.matches("^[0-9]*$");
else
return false;
}

// 方法2

public static boolean isNumeric(Object obj){
Pattern pattern = Pattern.compile("[0-9]*");
return pattern.matcher(obj.toString()).matches();
}
//判断传递来的是否是数字
public static int checkID(String s)
{
if((s == null)||(s.length() == 0)||!s.matches("^[0-9]*$"))
{
return 0;
}
else
{
if(s.length() < 10)
{
return Integer.parseInt(s);
}
else
{
return 0;
}
}
}
//判断传递来的是否是字符串
public static String checkString(String s)
{
if((s == null)||(s.length() == 0)||s.matches("^[0-9]*$"))
{
return "";
}
else
{
return s;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: