Select Categories Below
Advertisement
Start Your Own Q&A Site
Create your own Q&A site easily, allowing you to quickly grow a new community around any subject matter or generate new organic traffic for your existing website.
Status: Closed Points: 25 Time: 14:31 - Apr 25, 2007
deepthiyalamanchi
i want to know the code for validating a text field in java. for example if I have to enter numbers in the text field, an error must appear if i enter the characters in that text field
Categories:
Add Categories
When adding more than one category, separate them with commas.
nidhi
Date:: Apr 25, 2007
Time:: 15:33
how about parsing it as int, if it fails u know its not numeric eg try { num = Integer.parseInt ( txtbox.getText()); } catch (NumberFormatException E) { // value entered in txtbox is not numeric }
admin
Date:: Jul 02, 2007
Time:: 09:46
deepthiyalamanchi, please close this question and distribute the points. If you didn't get a solution to your problem or you found it yourself, please leave a comment here to let the experts know. Thanks, Quomon Admin
Date:: Aug 17, 2007
Time:: 11:49
The question has been closed. The Quomon Admin Team
vvijaymca1986
Date:: Sep 22, 2010
Time:: 06:23
how to perform validation on the textfield
srisudha
Date:: Apr 27, 2011
Time:: 08:35
public class Main { /** * This method checks if a String contains only numbers */ public boolean containsOnlyNumbers(String str) { //It can't contain only numbers if it's null or empty... if (str == null || str.length() == 0) return false; for (int i = 0; i < str.length(); i++) { //If we find a non-digit character we return false. if (!Character.isDigit(str.charAt(i))) return false; } return true; } /** * @param args the command line arguments */ public static void main(String[] args) { Main main = new Main(); System.out.println(main.containsOnlyNumbers("123456")); System.out.println(main.containsOnlyNumbers("123abc456")); } }
Question Answered
This question has been closed, and points have been rewarded to the following experts:
You're welcome however to comment or give additional information or if you wish, you have the ability to write a Tutorial in the Tutorial Area.
Answer this Question
New User
Email:
Upon submission of this form, you will automatically be registered as a Quomon user and we will send your login information to this address
Registered User
Username:
Password:
Forgot Your Password?
Enter your email address below and we will resend your login information to you.
Login Information Sent
Questions
a java code for validating a textfield
need validation controller for textbox in java
Require Expressions Validator?
How do I limit the number of characters in a textarea?
Show text field based on Radio Button Choice
You have 100 characters to use
Rank
Expert
Points
1.
10354
2.
6493
3.
5596
4.
4848
5.
3487
6.
2840
7.
2770
8.
2303
9.
1820
10.
917
Register today to share your knowledge with the community and be recognized and rewarded for your contributions.
Register Here
"Psst, Quomon is a great site. Pass it on." Tell a Friend | Link To Us | Save to Delicious | Digg it
Language Options
English:
Español:
Sponsors
Questions and Answers Software