src/share/classes/sun/io/CharToByteCp935.java

Print this page

        

*** 22,58 **** * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package sun.io; ! import sun.nio.cs.ext.IBM935; ! /** ! * Tables and data to convert Unicode to Cp935 ! * ! * @author Malcolm Ayres, assisted by UniMap program ! */ ! public class CharToByteCp935 ! extends CharToByteDBCS_EBCDIC - { - private final static IBM935 nioCoder = new IBM935(); - // Return the character set id ! public String getCharacterEncoding() ! { return "Cp935"; } ! public CharToByteCp935() ! { ! super(); ! super.mask1 = 0xFFE0; ! super.mask2 = 0x001F; ! super.shift = 5; ! super.index1 = nioCoder.getEncoderIndex1(); ! super.index2 = nioCoder.getEncoderIndex2(); ! super.index2a = nioCoder.getEncoderIndex2a(); ! subBytes = new byte[1]; ! subBytes[0] = 0x6f; } } --- 22,39 ---- * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package sun.io; ! import sun.nio.cs.ext.*; ! public class CharToByteCp935 extends CharToByteDBCS_EBCDIC { // Return the character set id ! public String getCharacterEncoding() { return "Cp935"; } ! public CharToByteCp935() { ! super((DoubleByte.Encoder)new IBM935().newEncoder()); } }