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/presentation/rmi/JNDIStateFactoryImpl.java
/* * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.presentation.rmi ; import java.lang.reflect.Field ; import java.util.Hashtable; import javax.naming.*; import javax.naming.spi.StateFactory; import java.security.AccessController ; import java.security.PrivilegedAction ; import javax.rmi.PortableRemoteObject ; import com.sun.corba.se.spi.orb.ORB; import java.rmi.Remote; import java.rmi.server.ExportException; // XXX This creates a dependendcy on the implementation // of the CosNaming service provider. import com.sun.jndi.cosnaming.CNCtx ; import com.sun.corba.se.spi.presentation.rmi.StubAdapter ; /** * StateFactory that turns java.rmi.Remote objects to org.omg.CORBA.Object. * This version works either with standard RMI-IIOP or Dynamic RMI-IIOP. * Based on the original com.sun.jndi.cosnaming.RemoteToCorba and * com.sun.jndi.toolkit.corba.CorbaUtils. * * @author Ken Cavanaugh */ public class JNDIStateFactoryImpl implements StateFactory { private static final Field orbField ; static { orbField = (Field) AccessController.doPrivileged( new PrivilegedAction() { public Object run() { Field fld = null ; try { Class cls = CNCtx.class ; fld = cls.getDeclaredField( "_orb" ) ; fld.setAccessible( true ) ; } catch (Exception exc) { // XXX log exception at FINE } return fld ; } } ) ; } public JNDIStateFactoryImpl() { } /** * Returns the CORBA object for a Remote object. * If input is not a Remote object, or if Remote object uses JRMP, return null. * If the RMI-IIOP library is not available, throw ConfigurationException. * * @param orig The object to turn into a CORBA object. If not Remote, * or if is a JRMP stub or impl, return null. * @param name Ignored * @param ctx The non-null CNCtx whose ORB to use. * @param env Ignored * @return The CORBA object for <tt>orig</tt> or null. * @exception ConfigurationException If the CORBA object cannot be obtained * due to configuration problems * @exception NamingException If some other problem prevented a CORBA * object from being obtained from the Remote object. */ public Object getStateToBind(Object orig, Name name, Context ctx, Hashtable<?,?> env) throws NamingException { if (orig instanceof org.omg.CORBA.Object) return orig ; if (!(orig instanceof Remote)) // Not for this StateFactory return null ; ORB orb = getORB( ctx ) ; if (orb == null) // Wrong kind of context, so just give up and let another StateFactory // try to satisfy getStateToBind. return null ; Remote stub = null; try { stub = PortableRemoteObject.toStub( (Remote)orig ) ; } catch (Exception exc) { // XXX log at FINE level? // Wrong sort of object: just return null to allow another StateFactory // to handle this. This can happen easily because this StateFactory // is specified for the application, not the service context provider. return null ; } if (StubAdapter.isStub( stub )) { try { StubAdapter.connect( stub, orb ) ; } catch (Exception exc) { if (!(exc instanceof java.rmi.RemoteException)) { // XXX log at FINE level? // Wrong sort of object: just return null to allow another StateFactory // to handle this call. return null ; } // ignore RemoteException because stub might have already // been connected } } return stub ; } // This is necessary because the _orb field is package private in // com.sun.jndi.cosnaming.CNCtx. This is not an ideal solution. // The best solution for our ORB is to change the CosNaming provider // to use the StubAdapter. But this has problems as well, because // other vendors may use the CosNaming provider with a different ORB // entirely. private ORB getORB( Context ctx ) { ORB orb = null ; try { orb = (ORB)orbField.get( ctx ) ; } catch (Exception exc) { // XXX log this exception at FINE level // ignore the exception and return null. // Note that the exception may be because ctx // is not a CosNaming context. } return orb ; } }
⏎ com/sun/corba/se/impl/presentation/rmi/JNDIStateFactoryImpl.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, 327434👍, 3💬
Popular Posts:
JDK 17 jdk.jdi.jmod is the JMOD file for JDK 17 JDI (Java Debug Interface) tool. JDK 17 JDI tool com...
layout.jar is a component in iText Java library to provide layout functionalities. iText Java librar...
How to perform XML Schema validation with sax\Writer.java provided in the Apache Xerces package? You...
jlGui is a music player for the Java platform. It is based on Java Sound 1.0 (i.e. JDK 1.3+). It sup...
What Is poi-ooxml-3.5.jar? poi-ooxml-3.5.jar is one of the JAR files for Apache POI 3.5, which provi...