vote up 1 vote down star

How can i make my Java Swing GUI Components [Right To Left] for Arabic language from NetBeans Desktop Application?

flag
Do yo mean, how to display text, in a JLabel for instance? – Oscar Reyes Dec 10 '08 at 0:42

4 Answers

vote up 1 vote down check

Don't you just have to use:

Component.setComponentOrientation( ComponentOrientation.RIGHT_TO_LEFT )

I believe that the swing components all already have support for RTL, don't they?

Not sure how/where you'd do that in regards to netbeans, though.

link|flag
vote up 0 vote down

In the JLabel constructor you can add the horizontal alignment. For RTL should be "RIGHT" or "LEADING"

Here you can find some examples using that.

http://java.sun.com/docs/books/tutorial/uiswing/components/label.html

Here's another page ( a little outdated but may help )

alt text

link|flag
vote up 0 vote down

The call of

 Component.setComponentOrientation( ComponentOrientation.RIGHT_TO_LEFT )

should do the trick. But be sure to use the SwingConstants LEADING and TRAILING instead of LEFT and RIGHT in your layouts. The same goes for GridBagConstraints.LINE_START or LINE_END instead of WEST or EAST, and probably some similar cases which I forgot to mention.

link|flag
vote up -1 vote down

You could use alignment, but that would not handle the complexities if you have English letters or numbers embedded within your text.

It might be preferable to use some sort of styled text widget or even an embedded HTML/rich text viewer.

I don't think that standard JLabels can handle the complexities otherwise.

link|flag
JLabel display unicode letters. I think they relay on the system fonts and if the system fonts can display the letter then everything it's ok. For instance in my comp I can write "Extraño" – Oscar Reyes Dec 10 '08 at 1:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.