Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 17 jdk.charsets.jmod - Charsets Module
JDK 17 jdk.charsets.jmod is the JMOD file for JDK 17 Charsets module.
JDK 17 Charsets module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.charsets.jmod.
JDK 17 Charsets module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Charsets module source code files are stored in \fyicenter\jdk-17.0.5\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, 2021, 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() { return new DoubleByte.Decoder(this, Holder.b2c, Holder.b2cSB, 0x40, 0xfe, true); } public CharsetEncoder newEncoder() { return new DoubleByte.Encoder(this, Holder.c2b, Holder.c2bIndex, true); } private static class Holder { static final char[][] b2c; static final char[] b2cSB; static final char[] c2b; static final char[] c2bIndex; static { b2c = Big5.DecodeHolder.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.DecodeHolder.b2cSB; c2b = Big5.EncodeHolder.c2b.clone(); c2bIndex = Big5.EncodeHolder.c2bIndex.clone(); 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++]; } } } }
⏎ sun/nio/cs/ext/Big5_Solaris.java
Or download all of them as a single archive file:
File name: jdk.charsets-17.0.5-src.zip File size: 2039497 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.compiler.jmod - Compiler Tool
2023-10-15, 10064👍, 0💬
Popular Posts:
What Is commons-fileupload-1.3.3 .jar?commons-fileupload-1.3.3 .jaris the JAR file for Apache Common...
maven-core-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Core module. Apache Maven is a software ...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
io.jar is a component in iText Java library to provide input/output functionalities. iText Java libr...
How to run "jarsigner" command from JDK tools.jar file? "jarsigner" command allows you to digitally ...