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:
JRE 8 rt.jar - com.* Package Source Code
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime environment included in JDK 8. JRE 8 rt.jar libraries are divided into 6 packages:
com.* - Internal Oracle and Sun Microsystems libraries java.* - Standard Java API libraries. javax.* - Extended Java API libraries. jdk.* - JDK supporting libraries. org.* - Third party libraries. sun.* - Old libraries developed by Sun Microsystems.
JAR File Information:
Directory of C:\fyicenter\jdk-1.8.0_191\jre\lib 63,596,151 rt.jar
Here is the list of Java classes of the com.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ com/sun/corba/se/impl/encoding/WrapperInputStream.java
/* * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.encoding; import java.util.HashMap; import java.util.Map; import java.util.Iterator; import java.util.List; import java.util.Collections; import java.util.ArrayList; import java.io.IOException; import java.io.PrintStream; import java.io.ByteArrayOutputStream; import java.math.BigDecimal; import java.math.BigInteger; import org.omg.CORBA.TypeCode ; import org.omg.CORBA.StructMember ; import org.omg.CORBA.UnionMember ; import org.omg.CORBA.ValueMember ; import org.omg.CORBA.TCKind ; import org.omg.CORBA.Any ; import org.omg.CORBA.Principal ; import org.omg.CORBA.BAD_TYPECODE ; import org.omg.CORBA.BAD_PARAM ; import org.omg.CORBA.BAD_OPERATION ; import org.omg.CORBA.INTERNAL ; import org.omg.CORBA.MARSHAL ; import org.omg.CORBA.TypeCodePackage.BadKind ; import org.omg.CORBA_2_3.portable.InputStream; import org.omg.CORBA_2_3.portable.OutputStream; import com.sun.corba.se.spi.ior.iiop.GIOPVersion; import com.sun.corba.se.impl.corba.TypeCodeImpl; import com.sun.corba.se.spi.orb.ORB; import com.sun.corba.se.impl.encoding.OSFCodeSetRegistry; import com.sun.corba.se.impl.encoding.MarshalInputStream; import com.sun.corba.se.impl.encoding.CodeSetConversion; import com.sun.corba.se.impl.encoding.CDRInputStream; import com.sun.corba.se.impl.encoding.CDROutputStream; public class WrapperInputStream extends org.omg.CORBA_2_3.portable.InputStream implements TypeCodeReader { private CDRInputStream stream; private Map typeMap = null; private int startPos = 0; public WrapperInputStream(CDRInputStream s) { super(); stream = s; startPos = stream.getPosition(); } public int read() throws IOException { return stream.read(); } public int read(byte b[]) throws IOException { return stream.read(b); } public int read(byte b[], int off, int len) throws IOException { return stream.read(b, off, len); } public long skip(long n) throws IOException { return stream.skip(n); } public int available() throws IOException { return stream.available(); } public void close() throws IOException { stream.close(); } public void mark(int readlimit) { stream.mark(readlimit); } public void reset() { stream.reset(); } public boolean markSupported() { return stream.markSupported(); } public int getPosition() { return stream.getPosition(); } public void consumeEndian() { stream.consumeEndian(); } public boolean read_boolean() { return stream.read_boolean(); } public char read_char() { return stream.read_char(); } public char read_wchar() { return stream.read_wchar(); } public byte read_octet() { return stream.read_octet(); } public short read_short() { return stream.read_short(); } public short read_ushort() { return stream.read_ushort(); } public int read_long() { return stream.read_long(); } public int read_ulong() { return stream.read_ulong(); } public long read_longlong() { return stream.read_longlong(); } public long read_ulonglong() { return stream.read_ulonglong(); } public float read_float() { return stream.read_float(); } public double read_double() { return stream.read_double(); } public String read_string() { return stream.read_string(); } public String read_wstring() { return stream.read_wstring(); } public void read_boolean_array(boolean[] value, int offset, int length) { stream.read_boolean_array(value, offset, length); } public void read_char_array(char[] value, int offset, int length) { stream.read_char_array(value, offset, length); } public void read_wchar_array(char[] value, int offset, int length) { stream.read_wchar_array(value, offset, length); } public void read_octet_array(byte[] value, int offset, int length) { stream.read_octet_array(value, offset, length); } public void read_short_array(short[] value, int offset, int length) { stream.read_short_array(value, offset, length); } public void read_ushort_array(short[] value, int offset, int length) { stream.read_ushort_array(value, offset, length); } public void read_long_array(int[] value, int offset, int length) { stream.read_long_array(value, offset, length); } public void read_ulong_array(int[] value, int offset, int length) { stream.read_ulong_array(value, offset, length); } public void read_longlong_array(long[] value, int offset, int length) { stream.read_longlong_array(value, offset, length); } public void read_ulonglong_array(long[] value, int offset, int length) { stream.read_ulonglong_array(value, offset, length); } public void read_float_array(float[] value, int offset, int length) { stream.read_float_array(value, offset, length); } public void read_double_array(double[] value, int offset, int length) { stream.read_double_array(value, offset, length); } public org.omg.CORBA.Object read_Object() { return stream.read_Object(); } public java.io.Serializable read_value() {return stream.read_value();} public TypeCode read_TypeCode() { return stream.read_TypeCode(); } public Any read_any() { return stream.read_any(); } public Principal read_Principal() { return stream.read_Principal(); } public java.math.BigDecimal read_fixed() { return stream.read_fixed(); } public org.omg.CORBA.Context read_Context() { return stream.read_Context(); } public org.omg.CORBA.ORB orb() { return stream.orb(); } public void addTypeCodeAtPosition(TypeCodeImpl tc, int position) { if (typeMap == null) { //if (TypeCodeImpl.debug) System.out.println("Creating typeMap"); typeMap = new HashMap(16); } //if (TypeCodeImpl.debug) System.out.println(this + " adding tc " + tc + " at position " + position); typeMap.put(new Integer(position), tc); } public TypeCodeImpl getTypeCodeAtPosition(int position) { if (typeMap == null) return null; //if (TypeCodeImpl.debug) System.out.println("Getting tc " + (TypeCodeImpl)typeMap.get(new Integer(position)) + //" at position " + position); return (TypeCodeImpl)typeMap.get(new Integer(position)); } public void setEnclosingInputStream(InputStream enclosure) { // WrapperInputStream has no enclosure } public TypeCodeReader getTopLevelStream() { // WrapperInputStream has no enclosure return this; } public int getTopLevelPosition() { //if (TypeCodeImpl.debug) System.out.println("WrapperInputStream.getTopLevelPosition " + //"returning getPosition " + getPosition() + " - startPos " + startPos + //" = " + (getPosition() - startPos)); return getPosition() - startPos; } public void performORBVersionSpecificInit() { // This is never actually called on a WrapperInputStream, but // exists to satisfy the interface requirement. stream.performORBVersionSpecificInit(); } public void resetCodeSetConverters() { stream.resetCodeSetConverters(); } //public void printBuffer() { stream.printBuffer(); } public void printTypeMap() { System.out.println("typeMap = {"); List sortedKeys = new ArrayList(typeMap.keySet()); Collections.sort(sortedKeys); Iterator i = sortedKeys.iterator(); while (i.hasNext()) { Integer pos = (Integer)i.next(); TypeCodeImpl tci = (TypeCodeImpl)typeMap.get(pos); System.out.println(" key = " + pos.intValue() + ", value = " + tci.description()); } System.out.println("}"); } }
⏎ com/sun/corba/se/impl/encoding/WrapperInputStream.java
Or download all of them as a single archive file:
File name: jre-rt-com-1.8.0_191-src.zip File size: 8099783 bytes Release date: 2018-10-28 Download
⇒ Backup JDK 8 Installation Directory
2023-02-07, 318601👍, 3💬
Popular Posts:
What is the sax\Counter.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 inst...
JDK 11 jdk.internal.le.jmod is the JMOD file for JDK 11 Internal Line Editing module. JDK 11 Interna...
How to download and install ojdbc6.jar for Oracle 11g R2? ojdbc6.jar for Oracle 11g R2 is a Java 6, ...
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...
JDK 11 jdk.dynalink.jmod is the JMOD file for JDK 11 Dynamic Linking module. JDK 11 Dynamic Linking ...