| Author |
How to show arabic and arabic in a JTextBox when user enter the numbers?
|
raminaa niilian
Ranch Hand
Joined: Jul 14, 2005
Posts: 550
|
|
Hi
Thank you for reading my post.
I am looking for a way to show Arabic digits in the JTextBox when user is entering the digitst instead of showing Europian digits. User keyboard layout is Arabic but numbers are shown in euopian instead of arabic.
Thanks.
|
 |
Francois Nadeau
Ranch Hand
Joined: Apr 09, 2009
Posts: 46
|
|
Hi Raminaa,
I have never done this, but I would suggest taking a look at the following link:
http://www.java2s.com/Code/Java/I18N/FormattingMessagesArabicDigit.htm
and then adding a KeyListener to your TextBox. In the listener, whenever the user presses a numeric key you can convert the text by using the above code. It won't be the most efficient way, but it should work fine for small amount of data.
Cheers.
|
[url]http://FrancoisNadeau.com[/url]
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
I'd use a DocumentFilter instead of a KeyListener, so you can replace numbers in text pasted into the text box as well:
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: How to show arabic and arabic in a JTextBox when user enter the numbers?
|
|
|