make/tools/src/build/tools/charsetmapping/Main.java

Print this page




  20  *
  21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22  * CA 95054 USA or visit www.sun.com if you need additional information or
  23  * have any questions.
  24  */
  25 
  26 package build.tools.charsetmapping;
  27 
  28 import java.io.*;
  29 import java.util.Scanner;
  30 
  31 public class Main {
  32 
  33     public static void main(String args[]) throws Exception {
  34         if (args.length < 3 ) {
  35             System.out.println("Usage: java -jar charsetmapping.jar src dst mType...");
  36             System.exit(1);
  37         }
  38         if ("sbcs".equals(args[2]) || "extsbcs".equals(args[2])) {
  39             GenerateSBCS.genSBCS(args);



  40         } else if ("euctw".equals(args[2])) {
  41             if (args.length != 4) {
  42                 System.out.println("Usage: java -jar charsetmapping.jar srcDir dstDir euctw copyrightSrc");
  43                 System.exit(1);
  44             }
  45             GenerateEUC_TW.genEUC_TW(args);
  46         } else if ("sjis0213".equals(args[2])) {
  47             GenerateMapping.genMapping(args);
  48         }
  49     }
  50 
  51 }


  20  *
  21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22  * CA 95054 USA or visit www.sun.com if you need additional information or
  23  * have any questions.
  24  */
  25 
  26 package build.tools.charsetmapping;
  27 
  28 import java.io.*;
  29 import java.util.Scanner;
  30 
  31 public class Main {
  32 
  33     public static void main(String args[]) throws Exception {
  34         if (args.length < 3 ) {
  35             System.out.println("Usage: java -jar charsetmapping.jar src dst mType...");
  36             System.exit(1);
  37         }
  38         if ("sbcs".equals(args[2]) || "extsbcs".equals(args[2])) {
  39             GenerateSBCS.genSBCS(args);
  40         } else if ("dbcs".equals(args[2])) {
  41             GenerateDBCS.genDBCS(args);
  42 
  43         } else if ("euctw".equals(args[2])) {
  44             if (args.length != 4) {
  45                 System.out.println("Usage: java -jar charsetmapping.jar srcDir dstDir euctw copyrightSrc");
  46                 System.exit(1);
  47             }
  48             GenerateEUC_TW.genEUC_TW(args);
  49         } else if ("sjis0213".equals(args[2])) {
  50             GenerateMapping.genMapping(args);
  51         }
  52     }
  53 
  54 }