private boolean TestHex(String value) {
boolean ret;
try {
int t = Integer.parseInt(value, 16);
ret = true;
} catch (NumberFormatException e) {
ret = false;
}
return (ret);
}
thank you so much it helped me
ReplyDelete