in my java project i need to use arabic text and strings , but the text becomes like "???????" , so what wrong ? and how to resolve this problem?

thanks

link|improve this question

71% accept rate
feedback

1 Answer

You can setup your Netbeans with startup option
place it inside netbeans.conf into netbeans_default_options

-J-Dfile.encoding=UTF-8

In the end it should look like

netbeans_default_options="..... -J-Dfile.encoding=UTF-8"

Hope it'll help you

link|improve this answer
I need to add Farsi/Arabic/rtl comment but ver bad position how to fix it? it work properly in eclipse – SjB May 17 '11 at 13:45
I think you have to create whole document (source code file) in rtl/Farsi/Arabic, you cannot mark just one place to be RTL. – Marek Sebera May 19 '11 at 5:53
How to create whole document (source code file) in rtl/Farsi/Arabic ? – SjB May 20 '11 at 10:38
I wouldn't recommend it. I wouldn't mix code (LTR) with comments or user texts (RTL). If you can place the comments outside of box to some separate text file and link to it. – Marek Sebera May 22 '11 at 0:59
isn't there a regular place in netbeans (7.x) options to say: Dude, assume/default to UTF-8 ? – Fronker Oct 12 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

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