java 语言
try{
Integer.parseInt(Student_Code);
}catch(exption e){
System.out.println("学号只能为数字");
}
JavaScript
try{
parseInt(Student_Code);
}catch(err e){
alert("学号只能为数字");
}
用这个试一下
public static boolean isNumeric(String str){
for (int i = 0; i < str.length(); i++){
System.out.println(str.charAt(i));
if (!Character.isDigit(str.charAt(i))){
return false;
}
}
return true;
}