Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
6answers
365 views

How to rendering fraction in Swing JComponents

Basically Swing JComponents are able to display numbers in fractions in this form 2 2/3. How can I paint fraction in the nicest form, for example 2⅔? . EDIT . as see I have only one way JTable ...
12
votes
3answers
2k views

Why is JFormattedTextField evil? [closed]

In this question Is there any way to accept only numeric values in a JTextField? one of the answers suggested that JFormattedTextField had issues. I've not yet used it, but could somebody please ...
6
votes
1answer
292 views

JFormattedTextField issues

1) how can I set Cursor to 0 possition without using Caret or Focus wrapped into invokeLater() (confortly can be solved by using @camickr Formatted Text Field Tips), is there somebody who knows ...
5
votes
3answers
186 views

FocusEvent doesn't get the last value of JFormattedTextField, How I can get it?

I have two JFormattedTextField objects on my JFrame object. I want a basic Math (addition) by the values of these JFormattedTextField objects. I want it happen when focus lost either the first or the ...
4
votes
2answers
1k views

JFormattedTextField caret position on focus

I am utilizing a few JFormattedTextFields in my program. For some reason when the text field gains focus after a click on the text field, the caret position always jumps to the left (position 0). I ...
3
votes
2answers
102 views

Validation through JFormattedTextFields in Java

I want to have two textfields which will have the following validations Both should be Integers The value in one textfield should be a integer multiple of other I have used two ...
3
votes
1answer
67 views

What is the “good way” to subscribe to value changes in a JFormattedTextField?

I want to subscribe to value changes on a JFormattedTextField. Checking the source code, the only thing I see is that the property "value" is fired on a new value. But this property is only ...
2
votes
2answers
35 views

Java - MaskFormatter

Can someone please help me out... I've tried all kinds of things (including help on here) and this just doesn't work. I'm using JFormattedTextField with a MaskFormatter to restrict data entry to 4 ...
2
votes
1answer
78 views

How to set jFormattedTextField so it only allows 2 numbers?

I'm a beginner in Java, and NetBeans. I'm trying to make a simple program where you introduce 2 numbers and their sum gets divided by two. However, I'm using JFormattedTExtFields and I don't know how ...
2
votes
3answers
70 views

Trying to get a JFormattedtextfield to change… not working

I'm trying to set whatever is entered into "titleField" to appear in "artistField" by passing it through the string variable title I type text into titleField, press enter, and nothing appears in ...
2
votes
1answer
107 views

JFormattedTextField and NumberFormat to work with Float

I made a small dialog with a JFormattedTextField, to enter a Float number between 0 and 10 up to 3 decimal numbers. I'm using NumberFormat for that, and a PropertyChangeListener to validate the value ...
2
votes
2answers
90 views

How can I make JFormattedTextField use $1.55, but store the value as the Integer 155?

Almost everything I've ever read about Java says don't use float or double for currency, but it seems like everything in Swing tries to force you to do exactly that if you want to input / display ...
2
votes
2answers
148 views

jFormattedTextField's Formatter.setCommitsOnValidEdit(true) doesn't work at first focus

I have a jFormattedTextField and I set setCommitsOnValidEdit to true then I added an event listener to "property change" on "value" property. At first focus of that jFormattedTextField it doesn't ...
2
votes
2answers
206 views

JFormattedTextField Question

Hey guys, I was wondering if there is anyway I can set a JFormattedTextField to have an auto format of an email input. For example, When the user type an email address I want it to accept something ...
2
votes
3answers
173 views

What is a simple way to create a text field (or such) that only allows the user to enter ints/doubles in Java?

I am looking for a way to ensure that my text field (JTextField, JFormattedTextField) is returning a double or int rather than a string when I call .getText(). What is the best way to do this (if ...
2
votes
1answer
99 views

Setting Upper Bound for a Number in JFormatterTextfield in Java

I want to set upper bound for a number in formatter textfield. Let's say that there is a string which has following format: 036 12' 23.67" The first number must be less than 180, so when the user ...
2
votes
1answer
626 views

JFormattedTextField using a regular expression formatter?

After much frustration with getting a JFormattedTextField to work with my custom formats, I was wondering if there was a Formatter or FormatterFactory that uses regular expressions? My idea is that ...
2
votes
2answers
406 views

How to get the same value as the user is seeing from a JFormattedTextField?

I'm using a NumberFormatter and JFormattedTextField, but the .getValue() doesn't return the same value as the user is seeing. I think the input-string is parsed using NumberFormats parse-method, and ...
1
vote
1answer
25 views

How can I programmaticaly check what is allowed input of a JFormattedTextField?

I would like to "clear" a JFormattedTextField programmatically but if I simply call txtAny.setText("") it is doesn't work cause textfield's regex pattern in my case: private final String ...
1
vote
3answers
88 views

Java : Does Locale affect the Formatter for JFormattedTextField

I have created a custom component (NumberFormattedTextField) of JFormattedTextField. This is the Formatter I use : public static InternationalFormatter getDecimalIFormatter92() { // For Buy ...
1
vote
2answers
138 views

Java : JFormattedTextField saving numbers

In my application I want to input numbers (amounts) to a specific limit, and hence have used JFormattedTextField. Limit like "12345678.99" i.e. 8 digits before "." and 2 after "." or so on. This is my ...
1
vote
1answer
54 views

Using a DateFormatter with a JFormattedTextField

I am using a JFormattedTextField in combination with a DateFormatter. I've seen examples of this kind of text field using MaskFormatter in which a user can type in values and overwrite existing ones ...
1
vote
2answers
208 views

JFormattedTextField to format percent numbers?

I would like to format a float number as a percent-value with JFormattedTextField that allows inputs from 0 to 100 percent (converted to 0.0f-1.0f), always shows the percent sign and disallows any ...
1
vote
2answers
111 views

putting “On Change” listener on jFormattedTextField

I have a jFormattedTextField in my program and I need to update a jLabel's text when jFormattedTextField value has been changed validly. Actually jFormattedTextField gets a number and jLabel displays ...
1
vote
2answers
119 views

Swing: why does JFormattedTextField adds “,” on focus lost

the question is in the title. I'm displaying an int number in my textfield but it keeps adding a "," when I exit the field... any ideas why? for the code lovers : the onfocuslost calls: ...
1
vote
2answers
180 views

A question about NumberFormatter

Here is the code, I am hoping that this will add the constraint that only integer input is valid for the text field: JFormattedTextField ftf = new JFormattedTextField (); NumberFormat format = ...
1
vote
2answers
151 views

how do i limit the length of the input i want inside a Jtextfield?

username = new JTextField(""); username.setBounds(330, 550, 230, 30); username.addActionListener(this); username.requestFocus(); // sets focus on JTextField this.add(username);
1
vote
2answers
327 views

How to use BigDecimal with JFormattedTextField

I have a field as: jFormattedTextFieldGrossWeight = new javax.swing.JFormattedTextField(); jFormattedTextFieldGrossWeight.setFormatterFactory(new javax.swing.text.DefaultFormatterFactory(new ...
1
vote
1answer
108 views

Incrementing a value in a JTextField with a timer

How do I go about making a timer that will increment the time in a JFormattedTextField?
1
vote
1answer
489 views

How do i use a MaskFormatter on a JFormattedTextField without knowing the length of the string?

So I have a JFormattedTextField and I need to restrict the user from entering anything but letters and hyphens. I'm not quite sure how to use the MaskFormatter without explicitly knowing the length ...
1
vote
2answers
337 views

fetching float values from jformatted text field

I am able to create JFormatted TextField that accepts only float values,but I am not able to fetch that value.... I am declaring it .. stopAppFormattedTextField = new ...
1
vote
1answer
277 views

Why must I press Enter TWICE for this JFormattedTextField to activate the JDialog's default button?

In the code sample below, if a user changes the contents of the JFormattedTextField then presses Enter, the dialog is supposed to act as if the OK button is pressed. But it takes two presses of Enter ...
1
vote
4answers
2k views

JFormattedTextField : input time duration value

I want to use a JFormattedTextField to allow the user to input time duration values into a form. Sample valid values are: 2h 30m 72h 15m 6h 0h However I am having limited success with this. Can some ...
0
votes
2answers
31 views

JTextField stops using MaskFormatter after being cleared

I'm doing a Sudoku solver and for that I want my JTextFields to only accept one of the numbers 123456789 as valid input. Therefore I use a MaskFormatter toghether with a JFormattedTextField. However ...
0
votes
1answer
42 views

How to make JFormattedTextField behave properly on a form with default button?

I run into a problem using form default button when it (form) includes JFormattedTextField. On a form with such a field, if it happens to have focus (and was changed), you have to press OK twice to ...
0
votes
1answer
87 views

Java : JFormattedTextField change setGroupingUsed() on focusLost & focusGained

I have many JFormattedTextdields with number data in it. I have used DecimalFormat, InternationalFormatter, DocumentListener and also tried with CaretPositionListener. The only problem I face is ...
0
votes
1answer
69 views

How to disallow characters in JFormattedTextField?

In NetBeans, how can I setup invalid characters for JFormattedTextField so that it does not allow: |, [, ] and etc.? Never mind, I figured out the solution: MaskFormatter formatter = null; ...
0
votes
2answers
193 views

howto use JFormattedTextField allowing only letters and numbers

I have this code and cannot get MaskFormatter right maskformatter MaskFormatter formatter = null; try { formatter = new MaskFormatter("HHHHHHH"); } catch (ParseException e) { ...
0
votes
1answer
70 views

custom text constrains in JTextField

How do I add custom text constrains to JTextField? For example, I would like users to provide input in such format: 12-100 78-023
0
votes
3answers
223 views

JFormattedTextField accepting different number of digits

I need a JTextField limiting to 3 decimal places. After a search, i discovered JFormattedTextField, which looks great. The code right now is: try { double aux = 25.4; MaskFormatter mascara = ...
0
votes
2answers
546 views

JTextField time in HH:mm:ss

I have the estimated time the it would take for a particular task in minutes in a float. How can I put this in a JFormattedTextField in the format of HH:mm:ss?
0
votes
5answers
225 views

Unable to get JFormattedTextField to highlight on mouse click focus event

I have been trying with no luck to get a JFormattedTextField to highlight on mouse click. I have been able to get it to work fine while tabbing through fields, however I would like to highlight ...
0
votes
2answers
1k views

Change color of JButton when selected, & Set mask on JFormattedTextField?

I'm writing my 1st Java program (in Netbeans) and I'm lost. I have 2 questions at the moment, if anyone is kind enough to help me. Here's what the program is supposed to do: take 1 of 4 "status" ...
0
votes
2answers
565 views

JFormattedTextField is not properly cleared

I am doing this assignment, make a program that solves sudoku. I have a panel with a grid of SudokuTextBox extends JFormattedTextField. I have a MaskFormatter so that it only accepts one integer per ...
0
votes
1answer
239 views

Workaround for JFormattedTextField delete bug in Java for Mac OS X 10.6 Update 2 (1.6.0_20)

There is apparently a bug introduced in the latest Java update for Mac OS X, which causes deletes in JFormattedTextFields to be performed twice. See ...