ASCII(애스키)란 American Standard Code for Information Interchange의 줄임글로서, 영문자에 기초한 문자 인코딩이다.  이 문자 인코딩에는 C0 제어문자(C0 control character)도 포함되어 있다.  ( 참고:  ASCII - Wikipedia, the free encyclopedia )

다음은  7bit ASCII 코드표를 만들어 보여주는 자바 소스 코드이다. 소스 코드 중에 진법변환에 필요한 메소드

        convertAtoI(String, radix)
        convertItoA(long, radix)

의 구현도 포함되어 있다.


  1. /*
  2.  *  Filename: MakeAsciiTableApp.java
  3.  *            Make a table of ascii codes.
  4.  *
  5.  *  Compile: javac -d . MakeAsciiTableApp.java
  6.  *  Execute: java MakeAsciiTableApp
  7.  *
  8.  *      Date:  2008/03/27
  9.  *    Author:  PH Kim   [ pkim (AT) scripts.pe.kr ]
  10.  */
  11. public class MakeAsciiTableApp {
  12.     static void println(String s) {
  13.         System.out.println(s);
  14.     }
  15.     static void print(String s) {
  16.         System.out.print(s);
  17.     }
  18.     static void printUsage() {
  19.         println("Usage: java MakeAsciiTableApp");
  20.         println("Make a table of ascii codes.");
  21.     }
  22.     static String BASE36 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  23.     public static String convertItoA(long num, int radix) {
  24.         long q, r;
  25.         boolean isNegative = false;
  26.         if (num < 0L) {
  27.             isNegative = true;
  28.             num = -num;
  29.         }
  30.         String arr = "";
  31.         q = num;
  32.         r = 0L;
  33.         while (q >= (long) radix) {
  34.             r = q % (long) radix;
  35.             q = q / (long) radix;
  36.             arr += BASE36.charAt((int) r);
  37.         }
  38.         arr += BASE36.charAt((int) q);
  39.         if (isNegative) {
  40.             arr += "-";
  41.         }
  42.         int n = arr.length();
  43.         String ret = "";
  44.         for (int i = 0; i < n; i++) {
  45.             ret += arr.charAt(n - i - 1);
  46.          }
  47.          return ret;
  48.     }
  49.     public static long convertAtoI(String srcStr, int radix) {
  50.         boolean isNegative = false;
  51.         long ret = 0L;
  52.         int len = srcStr.length();
  53.         char c;
  54.         int i;
  55.         long val = 0L;
  56.         c = srcStr.charAt(0);
  57.         if (c == '-') {
  58.             isNegative = true;
  59.         }
  60.         else if (c >= '0' && c <= '9') {
  61.             ret = (long) (c - '0');
  62.         }
  63.         else if (c >= 'A' && c <= 'Z') {
  64.             ret = (long) (c - 'A') + 10L;
  65.         }
  66.         else if (c >= 'a' && c <= 'z') {
  67.             ret = (long) (c - 'a') + 10L;
  68.         }
  69.         if (ret >= (long) radix) {
  70.             println("        Invalid character!");
  71.             return ret;
  72.         }
  73.         for (i = 1; i < len; i++) {
  74.             c = srcStr.charAt(i);
  75.             ret *= radix;
  76.             if (c >= '0' && c <= '9') {
  77.                 val = (long) (c - '0');
  78.             }
  79.             else if (c >= 'A' && c <= 'Z') {
  80.                 val = (long) (c - 'A') + 10L;
  81.             }
  82.             else if (c >= 'a' && c <= 'z') {
  83.                 val = (long) (c - 'a') + 10L;
  84.             }
  85.             if (val >= (long) radix) {
  86.                 println("        Invalid character!");
  87.                 return ret;
  88.             }
  89.             ret += val;
  90.         }
  91.         return ret;
  92.     }
  93.     static String[] asc  = new String[] {
  94.         "NUL", "SOH", "STX", "ETX", "EOT",
  95.         "ENQ", "ACK", "BEL", "BS", "HT",
  96.         "LF", "VT", "FF", "CR", "SO",
  97.         "SI", "DLE", "DC1", "DC2", "DC3",
  98.         "DC4", "NAK", "SYN", "ETB", "CAN",
  99.         "EM", "SUB", "ESC", "FS", "GS",
  100.         "RS", "US", "Spc"
  101.     };
  102.     static String[] control  = new String[] {
  103.         "NUL (null)",
  104.         "SOH (start of heading)",
  105.         "STX (start of text)",
  106.         "ETX (end of text)",
  107.         "EOT (end of transmission)",
  108.         "ENQ (enquiry)",
  109.         "ACK (acknowledge)",
  110.         "BEL (bell)",
  111.         "BS  (backspace)",
  112.         "TAB (horizontal tab)",
  113.         "LF  (line feed, NL new line)",
  114.        "VT  (vertical tab)",
  115.         "FF  (form feed, NP new page)",
  116.         "CR  (carriage return)",
  117.         "SO  (shift out)",
  118.         "SI  (shift in)",
  119.         "DLE (data link escape)",
  120.         "DC1 (device control 1)",
  121.         "DC2 (device control 2)",
  122.         "DC3 (device control 3)",
  123.         "DC4 (device control 4)",
  124.         "NAK (negative acknowledge)",
  125.         "SYN (synchronous idle)",
  126.         "ETB (end of trans. block)",
  127.         "CAN (cancel)",
  128.         "EM  (end of medium)",
  129.         "SUB (substitute, EOF end of file)",
  130.         "ESC (escape)",
  131.         "FS  (file separator)",
  132.         "GS  (group separator)",
  133.         "RS  (record separator)",
  134.         "US  (unit separator)",
  135.     };
  136.     public static void makeTable() {
  137.         String sbuf = "";
  138.         String abuf = "";
  139.         String tbuf = "";
  140.         int i, j;
  141.         char c;
  142.         print("    ");
  143.         for (i = 0; i < 8; i++) {
  144.             print("+----");
  145.         }
  146.         print("+");
  147.         println("");
  148.         print("    ");
  149.         print("| 0- ");
  150.         print("| 1- ");
  151.         print("| 2- ");
  152.         print("| 3- ");
  153.         print("| 4- ")
  154.         print("| 5- ");
  155.         print("| 6- ");
  156.         print("| 7- ");
  157.         print("|");
  158.         println("");
  159.         print("+---");
  160.         for (i = 0; i < 8; i++) {
  161.             print("+----");
  162.         }
  163.         print("+");
  164.         println("");
  165.         for (i = 0; i < 16; i++) {
  166.             tbuf = "";
  167.             sbuf = convertItoA((long) i, 16);
  168.             tbuf += "| " + sbuf + " ";
  169.             for (j = 0; j < 8; j++) {
  170.                 if (j*16 + i <= 32) {
  171.                    abuf = String.format("| %-3s", asc[j*16 + i]);
  172.                 }
  173.                 else if (j*16 + i == 127) {
  174.                     abuf = String.format("| %-3s", "DEL");
  175.                 }
  176.                 else {
  177.                     c = (char) (j*16 + i);
  178.                     abuf = String.format("| %2c ", c);
  179.                 }
  180.                 tbuf += abuf;
  181.             }
  182.             tbuf += "|";
  183.             println(tbuf);
  184.         }
  185.         print("+---");
  186.         for (i = 0; i < 8; i++) {
  187.             print("+----");
  188.         }
  189.         print("+");
  190.         println("");
  191.         println("");
  192.         for (i = 0; i < 16; i++) {
  193.             sbuf = String.format("%-30s",  control[i]);
  194.             tbuf = String.format("  %-34s",  control[i+16]);
  195.             print(sbuf);
  196.             println(tbuf);
  197.         }
  198.     }
  199.     public static void main(String[] args) {
  200.         if (args.length > 0 && "-h".equals(args[0])) {
  201.             printUsage();
  202.             System.exit(1);
  203.         }
  204.         makeTable();
  205.     }
  206. }




컴파일> javac -d . MakAsciiTableApp.java

실행> java MakeAsciiTableApp

    +----+----+----+----+----+----+----+----+
    | 0- | 1- | 2- | 3- | 4- | 5- | 6- | 7- |
+---+----+----+----+----+----+----+----+----+
| 0 | NUL| DLE| Spc|  0 |  @ |  P |  ` |  p |
| 1 | SOH| DC1|  ! |  1 |  A |  Q |  a |  q |
| 2 | STX| DC2|  " |  2 |  B |  R |  b |  r |
| 3 | ETX| DC3|  # |  3 |  C |  S |  c |  s |
| 4 | EOT| DC4|  $ |  4 |  D |  T |  d |  t |
| 5 | ENQ| NAK|  % |  5 |  E |  U |  e |  u |
| 6 | ACK| SYN|  & |  6 |  F |  V |  f |  v |
| 7 | BEL| ETB|  ' |  7 |  G |  W |  g |  w |
| 8 | BS | CAN|  ( |  8 |  H |  X |  h |  x |
| 9 | HT | EM |  ) |  9 |  I |  Y |  i |  y |
| A | LF | SUB|  * |  : |  J |  Z |  j |  z |
| B | VT | ESC|  + |  ; |  K |  [ |  k |  { |
| C | FF | FS |  , |  < |  L |  \ |  l |  | |
| D | CR | GS |  - |  = |  M |  ] |  m |  } |
| E | SO | RS |  . |  > |  N |  ^ |  n |  ~ |
| F | SI | US |  / |  ? |  O |  _ |  o | DEL|
+---+----+----+----+----+----+----+----+----+

NUL (null)                      DLE (data link escape)
SOH (start of heading)          DC1 (device control 1)
STX (start of text)             DC2 (device control 2)
ETX (end of text)               DC3 (device control 3)
EOT (end of transmission)       DC4 (device control 4)
ENQ (enquiry)                   NAK (negative acknowledge)
ACK (acknowledge)               SYN (synchronous idle)
BEL (bell)                      ETB (end of trans. block)
BS  (backspace)                 CAN (cancel)
TAB (horizontal tab)            EM  (end of medium)
LF  (line feed, NL new line)    SUB (substitute, EOF end of file)
VT  (vertical tab)              ESC (escape)
FF  (form feed, NP new page)    FS  (file separator)
CR  (carriage return)           GS  (group separator)
SO  (shift out)                 RS  (record separator)
SI  (shift in)                  US  (unit separator)



Creative Commons License

이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
Posted by Scripter
,