NetBeans 21 文字化け対策 などなど

netbeans.conf の netbeans_default_options に -J-Dfile.encoding=UTF-8 を書き加えても改善しません。

【改善策】
システムの環境変数に
変数:JAVA_TOOL_OPTIONS
値:-Dfile.encoding=UTF-8 -Dsun.jnu.encoding=UTF-8 -Dsun.stdout.encoding=UTF-8 -Dsun.stderr.encoding=UTF-8 -Dconsole.encoding=UTF-8
を新たに作成する。

【ご参考】Netbeans Output window uses wrong encoding · Issue #4261 · apache/netbeans · GitHub


NetBeansインストール時にJDKが見つからないと言われたら。

Do the following steps to resolve the problem

  1. Ensure that the JDK is already installed.
  2. If the installer is on a CD, Copy the EXE file for the Netbeans 6.5.1 installer onto your hard disk.
  3. Note the location of the installer.
  4. Open a Command Prompt running as administrator: Go to Start button > All Programs > Accessories Right click Command Prompt Select Run as administrator
  5. In the Command Prompt use the cd command to change to the directory containing the installer.
  6. Execute the following command to extract the contents of the installer: [Note: You might need to change the name of the installer to match the one you have.]netbeans-6.5.1-ml-java-windows.exe –extract
  7. Execute the following command to manually execute the installer:java -jar bundle.jar

You will see rapid scrolling output in the Command Prompt window for a few moments, then the installer window will appear to begin the installation process.

【ご参考】java – JDK was not found on the computer for NetBeans 6.5 – Stack Overflow


JDKはただフォルダを置いて環境変数にJAVA_HOMEにパスを設定しても上手く行かないような気がする。EXEをダブルクリックしてインストールしないとNetBeansもインストールされないのかな・・・?

私の場合、インストール時のJDKは削除してOpenJDKを使っているのでNetBeansを立ち上げる時はBATファイルから立ち上げています。(削除する必要はないと思いますが・・・)

『Netbaans21.bat』
@echo off
rem メモ帳を起動
start C:\PROGRA~1\NetBeans-21\netbeans\bin\netbeans64.exe –jdkhome “C:\openjdk_openjavafx\ver21\jdk-21.0.2”

rem コマンドプロンプトを終了
exit /B 0
※素人なのでこれで正しいのかは不明です。


How to change the font size of contents in netbeans navigator window

  1. Create a shortcut for the ide on the desktop.
  2. Open the properties pane and in the target option where it is mentioned: “C:\Program Files\NetBeans-11.3\netbeans\bin\netbeans64.exe” just add --fontsize 18 to the end.

So, it is going to look like this:

"C:\Program Files\NetBeans-11.3\netbeans\bin\netbeans64.exe" --fontsize 18

Apply the changes and restart the IDE. The new font size will be applied.

2024年6月15日 | カテゴリー : 備忘録 | 投稿者 : 曲がり屋