Issue
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
Solution
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
Answered By - Marek Sebera
Answer Checked By - Mary Flores (JavaFixing Volunteer)