| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

Shift JIS 文字一覧を作成

提供: MyMemoWiki
ナビゲーションに移動 検索に移動

Shift JIS 文字一覧を作成の編集

Shift JIS 漢字一覧(1~3)のテキストファイルを作成する

1108 01.JPG

  1. public class CreateShiftJISCharSet {
  2. public static void main(String[] args) {
  3. CreateShiftJISCharSet test = new CreateShiftJISCharSet();
  4. try {
  5. test.doPrintChars("c:\\work\\kanji1.txt", 0x88, 0x98);
  6. test.doPrintChars("c:\\work\\kanji2.txt", 0x98, 0xea);
  7. test.doPrintChars("c:\\work\\kanji3.txt", 0xfa, 0xfc);
  8. } catch (Exception e) {
  9. e.printStackTrace();
  10. }
  11. }
  12. private void doPrintChars(String outFileName, int start, int end) throws Exception {
  13. File out = new File(outFileName);
  14. BufferedWriter writer = new BufferedWriter(new FileWriter(out));
  15. for (int hb = start; hb<=end; hb++) {
  16. for (int lb = 0x40; lb<=0xff; lb++) {
  17. if (((lb - 0x40) % 0x10) == 0) {
  18. writer.write(new String(new byte[]{0x0d,0x0a}, "MS932"));
  19. }
  20. byte[] c = {(byte)hb, (byte)lb};
  21. writer.write(new String(c, "MS932"));
  22. }
  23. }
  24. writer.flush();
  25. System.out.println("finish.");
  26. }
  27. }

生成後、"?" などの文字を上記IMEを確認しながら編集する。 テンプレート:Ref Shift JIS 漢字1.txt テンプレート:Ref Shift JIS 漢字2.txt テンプレート:Ref Shift JIS 漢字3.txt

テンプレート:Ref 01.JPG


{{include_html banner_html, "!Java"}}