Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
JDK 11 jdk.charsets.jmod - Charsets Module
JDK 11 jdk.charsets.jmod is the JMOD file for JDK 11 Charsets module.
JDK 11 Charsets module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.charsets.jmod.
JDK 11 Charsets module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Charsets module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.charsets.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/nio/cs/ext/IBM834.java
/* * Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ /* */ package sun.nio.cs.ext; import java.nio.ByteBuffer; import java.nio.charset.Charset; import java.nio.charset.CharsetDecoder; import java.nio.charset.CharsetEncoder; import java.nio.charset.CoderResult; import sun.nio.cs.DoubleByte; import static sun.nio.cs.CharsetMapping.*; // EBCDIC DBCS-only Korean public class IBM834 extends Charset { public IBM834() { super("x-IBM834", ExtendedCharsets.aliasesFor("x-IBM834")); } public boolean contains(Charset cs) { return (cs instanceof IBM834); } public CharsetDecoder newDecoder() { IBM933.initb2c(); return new DoubleByte.Decoder_DBCSONLY( this, IBM933.b2c, null, 0x40, 0xfe); // hardcode the b2min/max } public CharsetEncoder newEncoder() { IBM933.initc2b(); return new Encoder(this); } protected static class Encoder extends DoubleByte.Encoder_DBCSONLY { public Encoder(Charset cs) { super(cs, new byte[] {(byte)0xfe, (byte)0xfe}, IBM933.c2b, IBM933.c2bIndex, false); } public int encodeChar(char ch) { int bb = super.encodeChar(ch); if (bb == UNMAPPABLE_ENCODING) { // Cp834 has 6 additional non-roundtrip char->bytes // mappings, see#6379808 if (ch == '\u00b7') { return 0x4143; } else if (ch == '\u00ad') { return 0x4148; } else if (ch == '\u2015') { return 0x4149; } else if (ch == '\u223c') { return 0x42a1; } else if (ch == '\uff5e') { return 0x4954; } else if (ch == '\u2299') { return 0x496f; } } return bb; } public boolean isLegalReplacement(byte[] repl) { if (repl.length == 2 && repl[0] == (byte)0xfe && repl[1] == (byte)0xfe) return true; return super.isLegalReplacement(repl); } } }
⏎ sun/nio/cs/ext/IBM834.java
Â
⇒ JDK 11 jdk.compiler.jmod - Compiler Tool
2020-08-13, 24355👍, 0💬
Popular Posts:
XMLSchema, Release 1.4.2, is a lightweight Java object model that can be used to manipulate and gene...
How to download and install Apache XMLBeans-2.6.0.zip? If you want to try XMLBeans Java library, you...
Apache BCEL Source Code Files are inside the Apache Ant source package file like bcel-6.5.0-src.zip....
JDK 11 java.compiler.jmod is the JMOD file for JDK 11 Compiler module. JDK 11 Compiler module compil...
What JAR files are required to run dom\Counter.java provided in the Apache Xerces package? You can f...