-2
votes
1answer
157 views

Can't set JTextField with setText(new String()) [closed]

I have a problem setting a JTextField. I have a XML-SAXParser which parses a XML for different elements and if one specific tag is found, set the content onto a JTextField in another class. This works ...
1
vote
1answer
36 views

java apps. string manipulation

I want to limit the no. of character that can be put on JTextField because on my database I have this column that has Sex,Status (which the no. of char. allowed is 1 only). and Middle Initial (which ...
2
votes
1answer
858 views

Java: Using ActionListener, I need to get user input from a Text Field and use it, I'm having problems

so what I need to do is use a JTextField to get user input in the form of a String, whilst I can do this part, I'm having trouble getting the String from the method to analyse it elsewhere in the ...
1
vote
8answers
1k views

JTextField getText() not working

I've been looking all over, and i cant find anyone who can solve this problem. I'm making a game, and in that game, i have editable controls. the controls window is a seperate JFrame, and when i click ...
1
vote
2answers
202 views

Java - Not being able to get data from Text Field

I have built this application and I tried to run it but I could not get the data from a JTextField. I don't know what's wrong... Here is the code that is relevant... Construct the JTextFeild: (File ...
0
votes
1answer
201 views

Convert foreign characthers (Greek) to English ones.

I am installing alarms, but they have an interface that I have to give name to various zones. The problem is that they can only accept greek characters that does not exist in english language else ...
3
votes
9answers
2k views

How to clear a string?

In a program I'm working on, a textfield has to display some text at some point. output.setText( outputString ); outputString = ""; output is a JTextField. These lines of code are in a method, and ...
1
vote
4answers
3k views

Convert JTextField input into an Integer

I am new to JAVA, I am trying to convert an input from a JTextField into an integer, I have tried loads of options but nothing is working, the eclipse is always giving me an error and the errors are ...
3
votes
2answers
343 views

Making a String accept only letters ( no numbers ).

Is it possible to allow only letters or numbers in a string in java ? for example : String Text; Text = jTextField1.getText(); now if (Text is a number) {System.out.println("Invalid Input");}
0
votes
0answers
45 views

Changing JTextField with a String variable

I have a JTextField. JTextField FirstNameTextField = new JTextField("", 25); I would like to update the field with a variable: String FirstName = "Mike"; ...
-3
votes
1answer
234 views

String null when getting text from JTextField [closed]

Ok I edited the original post so no one is going to argue on the title again (and that's my fault, so don't get mad now)... I have a portion of code that takes the text of a TextField (there are two ...
2
votes
3answers
529 views

JLabel and JTextField string comparison

When I use JLabel string comparison with == works fine private JLabel someJLabel = new JLabel("some text"); ... System.out.println (someJLabel.getText() == "some text"); // returns true but when I ...
0
votes
1answer
1k views

How to check JTextField text to String?

I have a problem on checking the text and string. public boolean Isequals(Object c){ boolean check = false; if (c instanceof MyTextTwist){ MyTextTwist tt = (MyTextTwist)c; if ...
1
vote
1answer
377 views

Typing Arabic numbers in JTextField

I am trying to type Arabic numbers in a JTextField and I used DocumentListener as follows: txtName.getDocument().addDocumentListener(this); ... public void insertUpdate(DocumentEvent ...
1
vote
1answer
1k views

compare jTextField - java

It is possible compare the value (string) of JTextField? I have some blocks of code similar to the bellow, so my ideia is compare (!= or ==) this - pn50.setText(play4b) with, for example, ...
1
vote
3answers
379 views

How do i select a character in a textfield?

is it possible to select a certain character from a textfield ? Is it possible to switch their position as well? e.g. Hello is it possible to switch the position of the "H" with the "e" ? to make ...
0
votes
2answers
1k views

JTextField and \r\n problems

Part of an app I am working on includes a log file viewer, with a find text function, which calls a pattern matcher on JTextField#getText(), like so: Matcher m = ...