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: Open Points: 125 Time: 13:12 - Sep 29, 2008
deepsnaidu24
so that whn i enter the number in the text i should not be able to enter the character and vice versa.
Categories:
Add Categories
When adding more than one category, separate them with commas.
ntombie
Date:: Sep 14, 2010
Time:: 08:52
i think that you should try this program: boolean correctForm = false; if(txtQuestion.getText().length() > 10) { correctForm = true; } else { JOptionPane.showMessageDialog(null, "Question missing!"); }
srisudha
Date:: Apr 27, 2011
Time:: 08:36
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")); } }
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
how can the validation be done for a text field in java
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