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/Big5_Solaris.java
/* * Copyright (c) 2004, 2010, 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.charset.Charset; import java.nio.charset.CharsetDecoder; import java.nio.charset.CharsetEncoder; import sun.nio.cs.DoubleByte; import sun.nio.cs.HistoricallyNamedCharset; import java.util.Arrays; import static sun.nio.cs.CharsetMapping.*; public class Big5_Solaris extends Charset implements HistoricallyNamedCharset { public Big5_Solaris() { super("x-Big5-Solaris", ExtendedCharsets.aliasesFor("x-Big5-Solaris")); } public String historicalName() { return "Big5_Solaris"; } public boolean contains(Charset cs) { return ((cs.name().equals("US-ASCII")) || (cs instanceof Big5) || (cs instanceof Big5_Solaris)); } public CharsetDecoder newDecoder() { initb2c(); return new DoubleByte.Decoder(this, b2c, b2cSB, 0x40, 0xfe, true); } public CharsetEncoder newEncoder() { initc2b(); return new DoubleByte.Encoder(this, c2b, c2bIndex, true); } static char[][] b2c; static char[] b2cSB; private static volatile boolean b2cInitialized = false; static void initb2c() { if (b2cInitialized) return; synchronized (Big5_Solaris.class) { if (b2cInitialized) return; Big5.initb2c(); b2c = Big5.b2c.clone(); // Big5 Solaris implementation has 7 additional mappings int[] sol = new int[] { 0xF9D6, 0x7881, 0xF9D7, 0x92B9, 0xF9D8, 0x88CF, 0xF9D9, 0x58BB, 0xF9DA, 0x6052, 0xF9DB, 0x7CA7, 0xF9DC, 0x5AFA }; if (b2c[0xf9] == DoubleByte.B2C_UNMAPPABLE) { b2c[0xf9] = new char[0xfe - 0x40 + 1]; Arrays.fill(b2c[0xf9], UNMAPPABLE_DECODING); } for (int i = 0; i < sol.length;) { b2c[0xf9][sol[i++] & 0xff - 0x40] = (char)sol[i++]; } b2cSB = Big5.b2cSB; b2cInitialized = true; } } static char[] c2b; static char[] c2bIndex; private static volatile boolean c2bInitialized = false; static void initc2b() { if (c2bInitialized) return; synchronized (Big5_Solaris.class) { if (c2bInitialized) return; Big5.initc2b(); c2b = Big5.c2b.clone(); c2bIndex = Big5.c2bIndex.clone(); int[] sol = new int[] { 0x7881, 0xF9D6, 0x92B9, 0xF9D7, 0x88CF, 0xF9D8, 0x58BB, 0xF9D9, 0x6052, 0xF9DA, 0x7CA7, 0xF9DB, 0x5AFA, 0xF9DC }; for (int i = 0; i < sol.length;) { int c = sol[i++]; // no need to check c2bIndex[c >>8], we know it points // to the appropriate place. c2b[c2bIndex[c >> 8] + (c & 0xff)] = (char)sol[i++]; } c2bInitialized = true; } } }
⏎ sun/nio/cs/ext/Big5_Solaris.java
Â
⇒ JDK 11 jdk.compiler.jmod - Compiler Tool
2020-08-13, 24405👍, 0💬
Popular Posts:
What Is commons-logging-1.2.jar? commons-logging-1.2.jar is the JAR file for Apache Commons Logging ...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
Apache Commons Lang 3 is the 3rd version of Apache Commons Lang, which provides a host of helper uti...
What Is Apache XMLBeans-2.6.0.zip file? Apache XMLBeans-2.6.0.zip file is the distribution package Z...
JDK 7 tools.jar is the JAR file for JDK 7 tools. It contains Java classes to support different JDK t...