java空字符串怎么写( 二 )


// 判断内容为整数 。
int x = -1;
boolean isNum = false;
try {
x = Integer.parseInt(idfield);
isNum = true;
} catch (Exception e) {
System.out.println(e.getMessage());
}
// 判断数字在1000-1006
if ((x >= 1000 && x

java空字符串怎么写

文章插图