JTextField is a Java Swing component that allows the editing of a single line of text.

learn more… | top users | synonyms

3
votes
5answers
66 views

JTextField in which the predefined text in not editable but other text can be appended to it?

While going through Java swing I faced this problem. I have a JTextField which has predefined and not editable text. the user should be able to append other text to it but without editing the ...
-1
votes
2answers
57 views

Java add text to textArea and textField

I am trying to make a JTextArea and a JTextField that has pre-set text in it already so when the user clicks in the box, they can edit it so something else. Here's what I have for my text field: ...
-1
votes
2answers
62 views

Using JTextField for user input

Thanks for your help guys...now the program works and runs like it should.. but I have 2 more question. 1.How can I get the output into a JTestField t4 or t5 2.How can I close the application using ...
-1
votes
1answer
45 views

Loading date into JTextField [closed]

I had some problems loading a date into a JTextField. What mistakes did I make? public static void main(String args[]) { try { for (javax.swing.UIManager.LookAndFeelInfo info : ...
0
votes
2answers
65 views

JTextField is not editable in a JPopupMenu

When I add a JtextField in a JPopupMenu, I can't edit the text when the popup is displayed. Anyone know why? Here's a code example: public static void main(String[] args) { JFrame frame = ...
-1
votes
1answer
59 views

Validate JTextField value so that it starts with “RA” then has 8 digits

I have a JTextField where in the user has to input the data. Its value has to always start with RA and must have exactly 8 digits after it. So, its length will be 10 always. for e.g., RA12345678. ...
0
votes
2answers
74 views

Java textField infinite loop

Game class: import java.util.Random; public class Game { public static void main(String args[]){ //----------Sets up GUI---------- GUI gameGUI = new GUI(); gameGUI.setVisible(true); ...
0
votes
2answers
38 views

JTextField suddenly too small

Screenshot: The textfield always worked fine, but suddenly was too small. You can still enter text, and when clicking the Print textJOptionPane. I also tried both JTextField tfld = new ...
0
votes
1answer
56 views

Can't Add JTextField to Frame Java

I've this code: import javax.swing.*; import java.awt.*; import java.util.*; import java.awt.event.*; class Pattern extends JComponent { private JFrame frame; private JPanel panelBody; ...
0
votes
2answers
164 views

java swing JTextField set PlaceHolder

I create a JTextField and now i want to set the placeholder on that JTextField i don't Know how to set the placeholder on the JTextField? Please Help How to set Placeholder text on JTextField ...
0
votes
2answers
56 views

getText() Method returns null when there is text

Whenever I enter a number in my text box and get the text and convert it I get an exception: Exception in thread "AWT-EventQueue-0" java.lang.NumberFormatException: For input string: "" Here is the ...
0
votes
2answers
34 views

'if' statement with modulus operator change method calls on button press

basically it's supposed to be a button that toggles whether a JTextfield is editable or not i'm pretty much 100% sure there's a better way of doing this (this doesn't work) i'm guessing a for loop? ...
1
vote
0answers
23 views

Why is the window too small if I don't resize it?

I am wondering why when I enter this code without resizing the window, I cannot see anything: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class GolfScoresGUI { ...
1
vote
2answers
64 views

Java chat client jtextfield vs jtextarea

I am writting a simple server chat client using gui to make the chat box and so on. I am simply wondering if I should use jtextarea instead of jtextfield if someone wants to write a long message since ...
0
votes
0answers
35 views

(Java) Re-Validating JFrame

I'm making a program that requires a grid of JPanels to be reset to the users required size from a JTextField, all done by a JButton. But I can't get it to repaint as the user presses the button, any ...
1
vote
2answers
51 views

set alignment of JTextField

My question is with reference to this post here JTextField : How to set text on the left of JTextField when text too long If the string is too long, is there any way to display the text in the next ...
0
votes
1answer
25 views

JGoodies JTextfield forces cursor to beginning of jtextfield

I bind my JTextfield by simply doing ValueModel valueModel = adapter.getBuferedModel(propertyName); JTextField textField = BasicComponentFactory.createLongField(valueModel, numberFormat); Whenever ...
1
vote
2answers
32 views

Instantiating array in a for loop to create JTextFields

I need to use a forloop and the text_fields instance variable to instantiate each text field, make it a listener, and add it to the applet. The text_fields variable is an array which has a max number ...
0
votes
1answer
32 views

saving data generated inside anonymous inner classes

I have a JTextField in my program which I hooked up a Keyboard Listener to through the use of an anonymous inner class. the listener clears the text box and saves the word currently on it. I want to ...
0
votes
2answers
147 views

How to Validate a textfield in java

Hello I need some help validing textfield in my gui. My professor gave me a hint on how to do but it freezes up my program. I've tried other methods but if If I enter text the text field the next ...
0
votes
3answers
55 views

ActionListener implementation in Java

Could you please help me use the ActionListener correclty in my code? The code compiles and the GUI is displayed correctly, but no button works!! If you want to test the code, note that you need to ...
0
votes
0answers
69 views

how to implement a JTexField when pressing a JButton

hi I'm beginning programming and I'm writing a program that consists of a grid, which when individual squares are pressed will change colour. I want to know how I can implement a JTextField that ...
1
vote
1answer
81 views

Add DocumentListener to validate multiple JTextFields

Code given below does real time validation for one JTextField. While entering some values to txt1 enables the save button and removing values reset the save button to disable. I use Netbeans as IDE. ...
0
votes
0answers
50 views

Can't type in any JTextField… causes app to freeze

I'm fairly new to Java and Swing... searched for answers but can't find a clear answer. I once had a working JTextField in this app and somewhere in my edits it stopped working. Now whenever I try ...
1
vote
1answer
22 views

Icon is not set right on GlassPane

I have a class that sets warning icons behind a textField when the input is different from what i expect form the user. For textfield this class works perfect, but when i'm trying to use it with a ...
0
votes
0answers
21 views

How can I hold jTextField values even after clearing the textfield?

I am searching for a strange logic. In my application user will insert data to his local database and at the same time to the remote server. If the internet connection fails, the data will not be ...
-2
votes
0answers
27 views

Decimal number documentlistener for jtextfield

PlainDocument doc = new PlainDocument(); doc.setDocumentFilter(new DocumentFilter() { public void insertString(DocumentFilter.FilterBypass fb, int off, String str, AttributeSet attr) throws ...
-1
votes
1answer
65 views

ActionPerformed and ActionListener [closed]

My program asks the user: How many course have you completed? So, the users has to enter the number of courses completed on a JTextField component. My program then converts the String that has been ...
0
votes
4answers
68 views

Deleting Text When User Click the TextField (Java)

In my program, user writes something to textfield and clicks 'generate' button, then the characters in the textfield is drawn to the panel. But also I want to clear all text in the textfield when the ...
0
votes
2answers
56 views

Java | KeyListener | Basic

How can I change or hide that JTextField from showing to the user and still get the users typed keys? I tried using "KeyCodeT.setVisible(false);", but it didn't work. This is what I'm talking about: ...
-3
votes
1answer
41 views

Title over 150 chars, about JTextField and JPanel

Would be title: Why does the JTextField go away when I uncomment line 40, how would I add the Ellipse2D.double ball to the JPanel, and is there a better thing to use than JPanel. I'm trying to make a ...
0
votes
0answers
46 views

jTextArea background not changing after setEnabled(false)

i have set setEnabled(false) for my jTextArea in a netbeans. The textarea is disabled but its background colour is not changing from white to a 'grayish' as expected. This only happens if i run my ...
0
votes
2answers
64 views

Is there any possibilities to store JPanel object in arraylist

Hi i got an assignment from my team leader that to store the employee details what the user entered in the textfield whatever in that panel, after that in the other frame the admin have to check the ...
-2
votes
1answer
41 views

Why isn't there a JTextField being displayed here?

public class WASD extends JFrame{ Ellipse2D.Double ball; int ballx = 100; int bally = 100; static JTextField typingArea; public static void main(String[] args){ ...
0
votes
1answer
99 views

What is the best way to make my buttons on my calculator interactive, so that they can actually add, subtract, etc?

I wanted to make a small calculator project for fun to test out my new GUI knowledge with Java Swing API. I created the GUI, but there's a crucial part missing: The math! My Question is, how do I add ...
2
votes
1answer
52 views

Stange unicode behaviour in JTextField

I'm writing a DocumentFilter which replaces all of the word "top" entered into a JTextField with the logical top symbol. Using this code is fine, however it's annoying as the user has to re-type ...
1
vote
1answer
39 views

Can't Fetch record from database in JTexField

Hello here i am trying to fetch record from database while i am using one combobox based on that selection i want to get related record from the same table in the textfields.. but unfortunately i got ...
0
votes
1answer
55 views

How to get a JTextField to an int and back again?

Hi I'm working on a program for my java class and am running into some problems. The assignment was to edit the professor's existing code to make it so that when a button is clicked in the GUI it ...
0
votes
1answer
96 views

Cant use getText() from JTextField

I'm stuck with my school work in Java, where I'm building a TicTacToe game, using the MVC design pattern. I have three classes (Model, View, Controller) and I'm at the last step from having a final ...
0
votes
3answers
96 views

Adding user input to array

Got a program that takes user input from JTextFeld and adds them to a JTextArea. Here's the action listener class: /** * Action listener class for reading in data and processing it * when the Add ...
0
votes
1answer
93 views

Rainfall Chart - textfield populate array

I have to create a program that accepts user input for the day and the rainfall on that day. I have 3 classes - Rainfall Viewer, Rainfall Chart and Rainfall Frame. So far, in Rainfall Frame I have ...
0
votes
0answers
12 views

Drawing a square behind JTextFields and Jbuttons

Hi there StackOverFlow members, I have a question, how would I draw a square behind the JTextField and Jbuttons shown in these pictures, photo 1 is what I'd like. Photo 2 is what I have; Photo 1: ...
0
votes
4answers
98 views

Changing JTextField's text while iterating or inside a loop [duplicate]

Let's say I have a JTextField "status" and I'm running this code: status = new JTextField(50); add(status); for (int i=0; i<10000; i++) { status.setText("bla bla - "+ i); ...
0
votes
0answers
54 views

Storing input in 2d array from JTextfield

I am making a program where the user inputs the day number, and then the amount of rainfall that fell on that day. I've set up a 2d array with 31 coloumns and 2 rows, as there is 31 days in the month ...
0
votes
1answer
83 views

Update JTextField with calculation from JComboBox

In my code, I'm trying to post in the JTextField the totalPrice calculation as soon as a someone clicks on an option from either of the comboboxes. I don't want the names i.e "pepperoni" but the ...
0
votes
2answers
183 views

How to set a textfield text from main method in netbeans?

I am new to NetBeans (but not Java) and I have a problem. I have created a GUI with NetBeans, which contains only a JTextField and a JButton. I want to add text to the textfield from the main ...
1
vote
1answer
27 views

Truncation or DecimalFormat in Java

I have this: if (inKm) { text = String.valueOf(MetricConverter.milesToKilometers(Double.valueOf(text))); } This yields a result into a JTextField that is a bit too long for my liking. How do ...
-2
votes
1answer
153 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 ...
0
votes
0answers
48 views

Window Error like sound in my TextField

i am using following coding for getting values from database and it works well... but problem is that when i hit enter button then it gives an error like sound.. please tell me where is wrong ...
0
votes
1answer
69 views

Text Based game JTextArea does not displaying JTextField

Ok, so I am making a text-based java game like Zork. I am doing with a simple GUI, that has a JTextField JTextArea ETC. I am having extreme difficulty having the user type in the textField for ...

1 2 3 4 5 19