if (!UIHelper.isEmptyString(this.txtValue.getText())) {
String a = this.txtValue.getText();
if(a.matches("[\\d]+")){ //判断是否数字
params.setObject("txtValue", this.txtValue.getText() );
}
else{
MsgBox.showWarning(this, "请输入数字。");
SysUtil.abort();
}
String a = this.txtValue.getText();
if(a.matches("[\\d]+")){ //判断是否数字
params.setObject("txtValue", this.txtValue.getText() );
}
else{
MsgBox.showWarning(this, "请输入数字。");
SysUtil.abort();
}