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

learn more… | top users | synonyms

46
votes
3answers
53k views

Value Change Listener to JTextField

I want the message box appear immediately after the user change the value in textfield. Currently I need to hit enter key to get the message box pop out. Anything wrong to my code? ...
21
votes
5answers
19k views

Detect enter press in JTextField

Is it possible to detect when someone presses enter while typing in a JTextField in java? Without having to create a button and set it as the default.
20
votes
5answers
486 views

JTextField Issues with Numpad

I've recently run into a strange issue with the Java JTextField. When I run the following code (see below), typing a "0" into the text field first sends a paste action, then types "0". For example, ...
10
votes
5answers
11k views

Java JTextField with input hint

I would like to add a hint value to my JTextField. It should look like Firefox rendering of <input type="text" title="bla">. This creates a edit field with the text 'bla' in the background. If ...
8
votes
13answers
19k views

Is there any way to accept only numeric values in a JTextField?

Is there any way to accept only numeric values in a JTextField? Is there any special method for this?
8
votes
4answers
6k views

Restricting JTextField input to Integers

I know that this question must have been asked and answered a million times, but I just can't find an easy solution. I have a JTextField that is meant to accept only positive integers as input. I need ...
7
votes
6answers
12k views

Swing JTextField how to remove the border?

Is there anyway to remove a border in a JTextField? txt = new JTextField(); txt.setBorder(null); // <-- this has no effect. I would really want it to look like a JLabel - but I still need it ...
7
votes
6answers
2k views

Auto-Completing JTextField and Arrow Keys

I'm trying to build a JTextField with JList for completing like Google. When a write a word, Google show several matches and when a press the down key I can select some option using up key and down ...
7
votes
1answer
485 views

How to show Bengali text properly

I have a JTextArea where I need to show Bengali text like: বাংলাদেশ But all I can see is rectangular boxes. How can I show Bengali characters properly?
7
votes
1answer
975 views

How to create a Jlabel inside JTextArea like in Facebook?

Is there a way I can create a JTextArea or JTextField with some JLabels inside it, like in this screenshot from Facebook: What I am trying to do is put some JButtons with titles like "Apple", ...
6
votes
3answers
148 views

Not able to add JTextField to JFrame

I am not able to add JTextField to JFrame. My JFrame contains a JLabel and a JTextField . First, i have added the JLabel, and it is working. Here is the code. private static void createandshowGUI() ...
6
votes
5answers
1k views

JTextField limiting character amount input and accepting numeric only

here's the code that i have on how to limit the character input length class JTextFieldLimit extends PlainDocument { private int limit; // optional uppercase conversion private boolean ...
6
votes
5answers
2k views

How to set a custom background color on a line in a JTextPane

I would like to alternate between gray and white as background from one line of my JTextPane to the next. I tried to do this by overloading the paintComponent() method and drawing the background ...
5
votes
3answers
204 views

Is there any way to get one side(i.e., right bordered line) of the jtextfield colored

Hi I prepared one swing frame in which I placed two text fields. Is there any way to get one side(i.e., right bordered line) of the jtextfield colored? Please suggest. I checked many things, but I ...
5
votes
2answers
6k views

Is it possible to have an autocomplete using jtextfield and a Jlist?

I want to create an autocomplete program in java and basically, I want to have an auto-complete or a list of suggestions regarding to the users input in the textfield. As the user types in the ...
5
votes
7answers
5k views

Example text in JTextField

I am looking for a way to put example text into a swing JTextField and have it grayed out. The example text should then disappear as soon as any thing is entered into that text field. Some what ...
5
votes
2answers
1k views

How can I add padding to a jtextfield

How can I add some padding to a jtextfield? I've tried tf.setMargin(new Insets(5,5,5,5)); which doesn't have any effect.
5
votes
1answer
6k views

swing: appropriate Listener for JTextField change events

Which type of Listener do I use for listening to changed text events in a JTextField? (I should know this or be able to tell from the Javadoc but I can't seem to figure it out.)
5
votes
2answers
2k views

JTextField limit input to certains chars only

i'd like to create JTextField with input characters limited to someting like "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVXYWZZ0123456789+&@#/%?=~_-|!:,.;" so i tried overriding public class ...
5
votes
3answers
356 views

How to simulate Keyboard press in java

I want to simulate entering a string (can contain any character) in JTextField. I am using new KeyEventData() for that. But I am not able to determine how to handle characters like {, }, ) etc and ...
5
votes
2answers
1k views

Document filter is not working in Java?

In text field more than 10 characters na, it has to show an error. For that i used document filter: JTextField field = (JTextField) txtFld; AbstractDocument document = (AbstractDocument) ...
5
votes
5answers
398 views

JButton stays pressed when focus stolen by JOptionPane

I am new to Swing and I have a situation. I am designing an application that renders the GUI components dynamically based on an xml file input(meta-data) . Now most of my JTextFields have ...
5
votes
2answers
229 views

Show Event for JTextField in Java?

I'm implementing a specialized version of JTextField and want to pack it into an own bean. The bean works pretty fine so far. Here's my question: How can I detect when the JTextField is shown? So ...
5
votes
4answers
882 views

Is it possibly to create selectable hyperlink with basic Swing components in Java?

I am trying to add a hyperlink to a JPanel. I would like to make it's text blue (and underlined) and the link should be selectable (to copy some part of it). So I tried to use JLabel: yes, it allow to ...
5
votes
2answers
704 views

Dynamically resize JTextField in JTree Node

I am using a JPanel with some JLabels and JTextFields as editor and renderer in a JTree. The user can click on any JTextField and modify the text. All works fine. All I am missing is how I can ...
5
votes
1answer
5k views

setBorder on JTextField does not work ? or does it?

The code is like this: JTextField txt = new JTextField(); txt.setBorder(BorderFactory.createMatteBorder(2,2,2,2,Color.red)); However the text field is ignoring my call to setBorder. No changes ...
5
votes
3answers
275 views

German characters in JTextField

I'm working on a Java application for people learning German, and I have run into a problem with the special characters of this language. I want to make a subclass of JTextField that will interpret ...
5
votes
1answer
3k views

Decorating a JTextField with an image and hint

I'm trying to create some nicer looking JTextFields with an image and a hint. To do this I made a decorator that overrides the paintComponent method. The reason I used a decorator is that I wanted to ...
5
votes
3answers
3k views

Can I limit the length of text in a JTextField which can be painted, while still storing the full text?

I have a text field in my application. Despite it being a text field, users sometimes paste huge amounts of text into it. Additionally, other functions of the problem set large amounts in as well. ...
4
votes
3answers
378 views

Swing - Thread.sleep() stop JTextField.setText() working [duplicate]

Possible Duplicate: using sleep() for a single thread I'm having issues with JTextField.setText() when using Thread.sleep(). This is for a basic calculator I'm making. When the input in the ...
4
votes
3answers
887 views

DocumentListener Java, How do I prevent empty string in JTextBox?

I have been working on a personal project to get better with programming. My goal is to make it much more robust, I am just starting. I am a current computer science student. Anyway, I am working on ...
4
votes
2answers
6k views

How to allow introducing only digits in jTextField? [duplicate]

Possible Duplicate: How to implement in Java ( JTextField class ) to allow entering only digits? I have tried to use the example shown here but java showing error message of "AttributeSet ...
4
votes
2answers
262 views

Is there a simple way to implement a dialog box with two input lines? (java)

I'm making an xml editor as one of our projects in class, and for adding an attribute, I am currently doing this: String name = JOptionPane.showInputDialog(this, "Enter the attribute name: ", "Name", ...
4
votes
2answers
285 views

Java swing 1.6 Textinput like firefox bar

I would like to create a textwidget/component wich looks like the firefox address bar. I mean a Textfield wich allows me to place little Buttons inside the field (e.g. cancel/reload/...) I tried ...
4
votes
2answers
910 views

JTextField: How to limit the number of charaters?

Please have a look at the following code. import java.awt.FlowLayout; import java.awt.GridLayout; import javax.swing.*; import javax.swing.text.AbstractDocument; import javax.swing.text.AttributeSet; ...
4
votes
5answers
2k views

Disabling 'paste' in a jTextfield

Hi I have an app that is written in Swing, awt. I want to prevent users from pasting values into the textfields. is there any way to do this without using action listeners?
4
votes
4answers
247 views

Can not edit the text of a JTextField inside a JPanel within a JWindow

This is in continuation of my previous question where I asked how to place something in the system tray. After some help from the community, I could do that. However what I am unable to do is to ...
4
votes
4answers
2k views

JTextField only shows as a slit Using GridBagLayout, need help

Hi thank you in advance for any help, I'm trying to build a simple program to learn GUI's but when I run the code below my JTextFields all show as a slit thats not large enough for even one character. ...
4
votes
4answers
15k views

How can I control the width of JTextFields in Java Swing?

I am trying to have several JTextFields on a single row, but I don't want them to have the same width. How can I control the width and make some of them wider than others? I want that they together ...
4
votes
1answer
4k views

Java: link JSlider and JTextfield for float value

what is the best and easiest way to link a JSlider and a JTextField so that if one changes, the other gets updated too, but there is no recursive loop? thanks!
4
votes
2answers
304 views

how to make cursor can enter jtextfield but the only way to give it a text is click a button?

i have jTextfield and jButton.. how to user can click on jTextfield(mouse can enter/exited on jtextfield), but if user typing something it will not do anything (except backspace that will remove ...
4
votes
2answers
9k views

How to Set Focus on JTextField?

I make my game run without mouse so using pointer is not a choice. High Score menu will show when player lose. this is my code highScore=new MyTextField("Your Name"); ...
4
votes
5answers
19k views

JTextField Fixed Height

How do I get the JTextField to have a fixed height when the Frame is maximized? I want it to look sort of similar to the Skype application on Ubuntu. private JTextField username; private ...
4
votes
1answer
247 views

Is it possible to have a single document listener to multiple text fields in Swing

I have a 12 filters for 12 columns on a JTable. Each filter is a TextField of type JTextField. Every time a user enters the data in the text box filter then search happens. Example: Suppose say, I ...
4
votes
2answers
111 views

not able to show data in a jTextField

I am writing a socket programming. It has GUI for server and client. In the server GUI there is a textfield which shows the word requested by user. But I am having problem in showing the word. I have ...
4
votes
2answers
2k views

how to find source component that generated a DocumentEvent

Is it possible to discover which oject generated a DocumentEvent? Something like i can do with ActionListener: JTextField field = new JTextField(""); field.addActionListener(actionListener); ...
4
votes
2answers
169 views

Performing a certain task after pressing “ctrl” + “alt” + “backspace”

how do i code it when i want to perform something. Let's say that the focus on a JTextField. and a messagebox will pop up when the user pressed ctrl alt and backspace at the same time.
4
votes
3answers
2k views

How to make a text field for searching(with tips like a google search)

I want to make a window application for PC using java swing. I would like to make a text field there. While typing to that text field I need it to show tips under that text field. And user can select ...
4
votes
3answers
650 views

Move cursor of JTextField or JComboBox to the start

I have a JTextField with some text. When I click text field the cursor moves to the end of field. I want the cursor to move to the start of the field when it becomes focused. I have the same problem ...
4
votes
5answers
187 views

How can I select text over two different JTextField's?

Lets say I have this code: public static void main(final String [] args) { final JFrame frame = new JFrame("Display Keyword Panel"); final JPanel panel = new JPanel(new BorderLayout()); ...

1 2 3 4 5 19