JFormattedTextField extends JTextField adding support for formatting arbitrary values, as well as retrieving a particular object once the user has edited the text.

learn more… | top users | synonyms

1
vote
1answer
26 views

Java - JFormattedTextField does not allow input on first attempt

I am making a little Sudoku game with a GUI and use a MaskFormatter for the JFormattedTextFields: formatter = new MaskFormatter(s); formatter.setValidCharacters("123456789"); But my problem is ...
0
votes
3answers
40 views

JSpinner getting null value

I want to take null values when my JSpinner is empty. But it returns 0.0 when I call getValue() function. public JFormattedTextField getTextField(JSpinner spinner) { JComponent editor = ...
0
votes
1answer
45 views

JFormattedTextField with MaskFormatter and DateFormat

after reading this article and this question I tried to make a combo of the two: a JFormattedTextField that always shows the slashes in the correct positions and that automatically parses a Date ...
0
votes
0answers
22 views

what is the best way to clear JformattedTextfield completely [duplicate]

I have this issue where the JformattedTextfield keeps remembering previous entered data. in my program I have a clear button which removes the entered data, but if you click on the next text field ...
1
vote
2answers
30 views

Is there a way to force validation after a Format is applied to a JFormattedTextField?

The first thing I do is create a NumberFormat that is appropriate to my needs: this.format = NumberFormat.getIntegerInstance(); this.format.setMinimumIntegerDigits(6); ...
0
votes
3answers
45 views

Readonly JFormattedTextField

Supossing that a JFormattedTextField is enabled and contains a formatter, is there a way to make it readonly? With a JTextField, we just need to suply a custom Document and do all the control there, ...
0
votes
0answers
36 views

Allowing multiple JFormattedTextField to accept new SimpleDateObjects

I'd like my dateField to accept two date formats. The solution I currently has only accepts the final element from the String array. Is it possible to accept both date formats? import ...
0
votes
1answer
44 views

JFormattedTextField nullpointerexception

I have a panel that shows a list of patients (ID/names/age). I have a jlist that when i click the patient it links the data of the patient to the textfields in my panel. The problem: When im trying ...
1
vote
1answer
45 views

how to retrieve currency format values from JformattedTextfield

I have this problem where I am trying to retrieve and pass calculated values to JformattedTextfield, I know 1,500.00 can not be accepted by Float due to the jformattedTextfield (,). Is there a way ...
0
votes
3answers
64 views

Is it Possible to Add ActionListener in the JFormattedTextField?

Hello I'm currently working in my java file. I'd like to add an event on JFormattedTextField when I press the enter key. This is my code import javax.swing.*; import java.awt.*; import ...
0
votes
1answer
46 views

Introducing just numbers form an interval in a TextField in Java

How can I add just numbers betwwen 0 and 255 in a FormattedTextField in Java? I tried this way : private JFormattedTextField text4; //... text4= new JFormattedTextField(paymentFormat); ...
1
vote
1answer
143 views

JSpinner in Double format

I'd like to create JSpinners with support for non-integer values such as 2.01 and -3.456, so getValue() returns a Double. Not only this, but I'd like the step size should be dynamic using something ...
0
votes
0answers
41 views

JFormattedTextField and MaskFormatter how and where do i put stuff?

okay, so i have gotten a new assignment for college and i am to add some stuff to my program. my program is taking in data about cars, licence plates, model, brand and an url for a picture. right ...
0
votes
1answer
34 views

How can I format a time to appear in a FormattedJTextField in the format hh:mm, with no AM or PM after it?

How can I format a time to appear in a JFormattedTextField in the format hh:mm, with no AM or PM after it and a proceeding 0 in the case of a single digit hour (e.g. "09:30")? Thanks in advance. I ...
0
votes
0answers
42 views

JFormattedTextField Is Cleared When Another Receives Focus

I have a program that contains 2 JFormattedTextFields, 2 JComboBoxes, 2 JLabels and 1 JButton. When I enter any text into one JFormattedTextField, and then click any of the previously mentioned ...
0
votes
1answer
27 views

Can you link values for two JFormattedTextFields?

I've got an interface with 2 JFormattedTextFields for which I need the values (not just the displayed text) to be identical. Ideally they should both be editable, with a change in one being mirrored ...
0
votes
0answers
30 views

Getting long value in JFormatted Field and save it in mySql

I have a jFormatted Field name "txtContact" in my Java Swing and I put an input mask ###-###-##### ex. 123-456-78910 what I want is to save this in MySQL database without the dash "-" ex: ...
2
votes
1answer
113 views

Make JFormattedTextField accept decimal with more than 3 digits

I have a JFormattedTextField that should be able to accept double numbers with more than 3 decimal digits. It accepts entries 0.1, 0.01, 0.001 but rejects 0.0001 and numbers with more decimal digits. ...
1
vote
2answers
290 views

How to make JFormattedTextField accept integer without decimal point (comma)?

I used JFormattedTextField withNumberFormat in this way: -Creat a JFormattedTextField refernce JFormattedTextField integerField; -Create a NumberFormat refernce NumberFormat ...
0
votes
0answers
67 views

Allow only digits (without any limit in number of digits) in a JFormattedTextField

How to allow only digits (without any limit in number of digits) in a JFormattedTextField? I mean I don't want to check to see what has been entered in my JFormattedTextField, itself doesn't allow any ...
-1
votes
2answers
54 views

How do I format decimal java [closed]

I want to format a decimal number like this: 1234.5 0.5 It mean the max number would be 9999.9 (4 characters before ".", 1 character after)
0
votes
4answers
424 views

How to take date in Text field

I am new to Java and I'm having trouble getting the date format for a Textfield. I'd like to take the date input by the user and input it into a database. I've tried using JCalender but it's not ...
1
vote
0answers
56 views

How can I read formatted text from a .doc or .htm file with xcode?

I think this is a noobish question but I've been experimenting all morning and can't get this to work. Thanks in advance to any help. I'm trying to make an app that displays formatted text based on ...
5
votes
1answer
245 views

Swing - MaskFormatter - Enter Numbers from Right side of the textfield

I'm new to Swing Java development. Can some one help me on this. I have a jformattedtextfield with maskformatter. it works just fine. But only thing i would like to know is if we can make this to ...
1
vote
2answers
270 views

JFormattedTextField deletes user input

I have the following code: public test() { setLayout(new FlowLayout()); JFormattedTextField price = new JFormattedTextField(new DecimalFormat("#,##0.00 \u00A4")); price.setValue(new ...
0
votes
1answer
140 views

JFormattedTextField's is add characters on focus

I have a JFormattedTextField being initialized with the code JFormattedTextField f = new JFormattedTextField(createFormatter()); f.setValue(null); f.setColumns(1); f.setEditable(true); ...
0
votes
1answer
109 views

Java Swing - I have a requirement to convert enter number to minutes and seconds in HH:MM format

In Java Swing, do we have text component that will work just like how we set the time in Microwave. By default system should display 00:00:00 (hh:mm:ss) in a textfield. Users focus defaults in the ...
0
votes
3answers
186 views

how to manipulate jtextfield return type?

I have a jtext field when user type a number like 123456789,10 it will automatic set in jtextfield 123,456,789.10 then if user click a button it will System.out.print( the_same_number ...
1
vote
1answer
48 views

Comparison between the JFormattedTextField and Integer objects

I have somewhat of a strange problem. I'm writing a simple Sudoku program. Everything works perfectly now except this method: public static void checkAnswerKey() { int rowCounter = 0; ...
0
votes
2answers
552 views

How to restrict inputs in jtextfield strictly to double values?

I am coding a gui and I wanted to use JFormattedTextField to verify my Input as double value, but the amountFormatter does not give me the right input I typed in back. So I tried to create an own ...
0
votes
2answers
77 views

Assigning multiple values from a JFormattedTextField to multiple variables

If I had a JFormattedTextField like this MaskFormatter formatter = new MaskFormatter("#,#"); JFormattedTextField textField = new JFormattedTextField(formatter); and if I had variables int x = 0; ...
0
votes
1answer
326 views

JFormattedTextField with date and time

I want to get the value of my JFormattedTextField and convert it to string here is my code for the JFormattedTextField Here's my code: public void formattedTextField() { timeAndDate ...
1
vote
1answer
212 views

Dynamic JFormattedTextFields in JXDatePicker

I require a field that accepts 4 types of formats: integer, float, string and date. When the user requires a date input the UI will present a date picker. So to simplify the UI to have a singular ...
0
votes
0answers
129 views

why is mask in a jformattedtextfield not the same as regex patterns? [closed]

For creating an instance of JFormattedTextField a MaskFormatter is needed. The mask required for creating an instance of MaskFormatter is totally different from regex pattern. I know that it is ...
2
votes
1answer
226 views

How do I keep a JFormattedTextField in non-overwrite mode?

I have a problem with JFormattedTextField, namely keeping it in non-overwriting mode. I found out how to set it to non-overwriting, namely with setOverwriteMode(false). However, although this ...
2
votes
0answers
109 views

Time-inputfield for quick entering

I want a quick-to-use way for entering times down to centiseconds. Entering digits should push them in from the right and automatically add leading zeros, "." and ":" as needed, so for example: "" => ...
2
votes
1answer
353 views

JFormattedTextField currency format for specific locale

i have used the information in the below link to display the currency format for specific locale : How to change the format of a JFormattedTextField? But the format is not changing, when changing ...
2
votes
3answers
238 views

Check for empty JFormattedTextField

I'm new here, and I'd like some help on a small Java project I'm doing. This is the code snippet I need help with: private void CalculateButtonActionPerformed(java.awt.event.ActionEvent evt) ...
0
votes
0answers
171 views

Using character 'A' inside MaskFormatter

I am using A inside my MaskFormatter to use for Date mask, but character A is not displayed as it is the pre-defined character for ( A used for Any character or number (Character.isLetter or ...
4
votes
2answers
294 views

How to custom formatter JFormattedTextField to display an IP address?

I have been trying to custom JFormattedTextField to display a mask for entering an IP address. I read javadoc, and I tried with ###.###.###.###, but it's not valid in many cases. I found some ...
2
votes
3answers
851 views

Values not clearing in JFormattedTextField

I am finding it hard to clear the value of JFormattedTextFields. How to do it? I tried txtJFormattedTextField.setText(""); But when focus is lost again the value that I cleared away will appear. ...
4
votes
2answers
284 views

trouble with deleting in masks in a JFormattedTextField

I am having trouble with masks in a JFormattedTextField I understand that it replaces invalid characters with a space, or whatever you define via setPlaceholderCharacter, but what I need it to do is ...
0
votes
0answers
16 views

no actionEvent from JFormattedTextField without edit?

After changing an app from java1.4.2 to java6_30 client complains about changed behaviour of some date input-field. field is subclassed from JFormattedTextField with a digit-mask to form a date/time ...
0
votes
2answers
79 views

lostFocusEvent not occuring when I delete text inside a Jtextfield?

Hi I have implemented a simple focusListener method and registered two jTextFields to it. What this method does is to add the numbers in them and display it in a JLabel. If I typed "2" in them, it ...
1
vote
2answers
104 views

Is there a way to put a colon in a jtextfield so it cant be removed?

I want a user to input time, so like 12:00, but I need to figure out a few things and I am wicked lost. Can I limit the text to 5 characters and how? Can I have a colon embedded in the code so that ...
4
votes
2answers
548 views

Using getValue for JFormattedText to display in another JFormattedText field

I have a program where I calculate for either 1 of 2 variables depending on the radio button selected. I'm trying to use getValue to get a value from a JFormattedText field and display it on another ...
1
vote
1answer
197 views

setValue to JFormattedTextField does not show on GUI

I'm writing a simple loan calculator with gui using swing. I am using DecimalFormat to ensure correct formatting wtih JFormattedTextField . public static void main(String[] args) { ...
0
votes
2answers
216 views

Assigning JFormattedTextField a Float

I'm writing a simple loan calculator with gui using swing. I used DecimalFormat to make sure I capture the input in my specified format ####.## for my JFormattedTextField . public static void ...
6
votes
2answers
314 views

Strict 24-hour time in JFormattedTextField

I am trying to create a JFormattedTextField that only accepts a 24-hour time. I am very close to a solution, but have one case where the following code example does not work. If you enter the time ...
0
votes
0answers
43 views

Java: How to un-focus a JFormattedTextField by clicking on a JPanel?

My JFormattedTextField is added to my JPanel. When the user is using the JFormattedTextField, I would like them to be able to click on the JPanel to unselect the JFormattedTextField and at the same ...

1 2 3