web-dev-qa-db-ja.com

Netbeans 7,8でUTF8を表示する方法は?

私のJavaプロジェクトでは、アラビア語のテキストと文字列を使用する必要がありますが、テキストは"???????"のようになります。何が問題なので、この問題を解決するにはどうすればよいですか?

ありがとう

20
Radi

スタートアップオプションを使用してNetbeansをセットアップできます
それをnetbeans.conf内のnetbeans_default_optionsに配置します

-J-Dfile.encoding=UTF-8

結局、それは次のように見えるはずです

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

それがあなたを助けることを願っています

35
Marek Sebera

Netbeansのデフォルトの文字セットをUTF-8(Windowsの場合)に設定する手順は次のとおりです。

1 Go to C:\Program Files\netbeans-x.x\etc
2 Open netbeans.conf in Notepad.
3 On the netbeans_default_options add: -J-Dfile.encoding=UTF-8. (make sure to put it within the quotation marks)
4 Project properties -> Build -> Compiling ->

    Additional compiler options) text box.- add: -encoding UTF-8 

5 You can also check to make sure that you have increased the memory allocation for Netbeans by looking at the netbeans_default_options line. The default max is 128MB. We have increased this to 256MB. 
3
koe

Ubuntugoディレクトリex。

Sudo gedit /usr/local/netbeans-8.0/etc/netbeans.conf

追加

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

フィンを保存

3
Donot Don't

NetbeansでUTF8ダリー語、パシュトゥー語、ペルシア語、アラビア語をサポートする方法を解決するには、次の問題に従ってください。

  1. c:\ Program Files\NetBeans 8.0.2\etcPATフォームウィンドウを開きます
  2. netbeans.confをコンピュータのどこかにコピーするよりも
  3. netbeans_default_options =内に-J-Dfile.encoding = UTF-8を追加します
  4. 以下のコードのように
  5. netbeans_default_options = "-J-Dfile.encoding = UTF-8 -J-client -J-Xss2m -J-Xms32m -J- XX:PermSize = 32m -J-Dapple.laf.useScreenMenuBar = true-J-Dapple.awt。 graphics.UseQuartz = true -J-Dsun.Java2d.noddraw = true -J-Dsun.Java2d.dpiaware = true -J-Dsun.Zip.disableMemoryMapping = true "
  6. ファイルをC:\ Program Files\NetBeans 8.0.2\etcに置き換えるよりも
  7. netBeansを閉じて再度開くと、ダリー語、パシュトゥー語、ペルシア語、アラビア語などのすべての言語で機能します。
1
Ahmad Shakib