1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

windowsからMacに移行するときの文字コードに関するメモ

Posted at

windowsからmacに移行するとき、Javaファイルの文字コードがsjisだとMacでコンパイルエラーになります。

Mac用にファイルを変換する手順をまとめておきます。

NKFのインストール

nkfで検索します。
多分、ベクターからダウンロードできます

使い方

nkf -wLm --overwrite **/*.java
Mac用の改行コードで、Utf8に変換
ですが、カレントフォルダのファイルしか変換されません(多分)

カレントフォルダ以下の全フォルダで変換する

windowsではバッチファイルで対応します
for /r %%i in (*.java) do nkf -wLm --overwrite %%i

%%iがファイル名のフルパスとなります。
使う前に一応調べてから使ってください。

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?