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/naming/pcosnaming/ServantManagerImpl.java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.naming.pcosnaming; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; import java.util.Hashtable; import org.omg.CORBA.Policy; import org.omg.CORBA.LocalObject; import org.omg.PortableServer.POA; import org.omg.PortableServer.Servant; import org.omg.PortableServer.ForwardRequest; import org.omg.PortableServer.ServantLocator; import org.omg.PortableServer.LifespanPolicyValue; import org.omg.PortableServer.RequestProcessingPolicyValue; import org.omg.PortableServer.IdAssignmentPolicyValue; import org.omg.PortableServer.ServantRetentionPolicyValue; import org.omg.PortableServer.ServantLocatorPackage.CookieHolder; import com.sun.corba.se.spi.orb.ORB; /** * @author Rohit Garg * @since JDK1.2 */ public class ServantManagerImpl extends org.omg.CORBA.LocalObject implements ServantLocator { // computed using serialver tool private static final long serialVersionUID = 4028710359865748280L; private ORB orb; private NameService theNameService; private File logDir; private Hashtable contexts; private CounterDB counterDb; private int counter; private final static String objKeyPrefix = "NC"; ServantManagerImpl(ORB orb, File logDir, NameService aNameService) { this.logDir = logDir; this.orb = orb; // initialize the counter database counterDb = new CounterDB(logDir); contexts = new Hashtable(); theNameService = aNameService; } public Servant preinvoke(byte[] oid, POA adapter, String operation, CookieHolder cookie) throws ForwardRequest { String objKey = new String(oid); Servant servant = (Servant) contexts.get(objKey); if (servant == null) { servant = readInContext(objKey); } return servant; } public void postinvoke(byte[] oid, POA adapter, String operation, java.lang.Object cookie, Servant servant) { // nada } public NamingContextImpl readInContext(String objKey) { NamingContextImpl context = (NamingContextImpl) contexts.get(objKey); if( context != null ) { // Returning Context from Cache return context; } File contextFile = new File(logDir, objKey); if (contextFile.exists()) { try { FileInputStream fis = new FileInputStream(contextFile); ObjectInputStream ois = new ObjectInputStream(fis); context = (NamingContextImpl) ois.readObject(); context.setORB( orb ); context.setServantManagerImpl( this ); context.setRootNameService( theNameService ); ois.close(); } catch (Exception ex) { } } if (context != null) { contexts.put(objKey, context); } return context; } public NamingContextImpl addContext(String objKey, NamingContextImpl context) { File contextFile = new File(logDir, objKey); if (contextFile.exists()) { context = readInContext(objKey); } else { try { FileOutputStream fos = new FileOutputStream(contextFile); ObjectOutputStream oos = new ObjectOutputStream(fos); oos.writeObject(context); oos.close(); } catch (Exception ex) { } } try { contexts.remove( objKey ); } catch( Exception e) { } contexts.put(objKey, context); return context; } public void updateContext( String objKey, NamingContextImpl context ) { File contextFile = new File(logDir, objKey); if (contextFile.exists()) { contextFile.delete( ); contextFile = new File(logDir, objKey); } try { FileOutputStream fos = new FileOutputStream(contextFile); ObjectOutputStream oos = new ObjectOutputStream(fos); oos.writeObject(context); oos.close(); } catch (Exception ex) { ex.printStackTrace( ); } } public static String getRootObjectKey() { return objKeyPrefix + CounterDB.rootCounter; } public String getNewObjectKey() { return objKeyPrefix + counterDb.getNextCounter(); } } class CounterDB implements Serializable { CounterDB (File logDir) { counterFileName = "counter"; counterFile = new File(logDir, counterFileName); if (!counterFile.exists()) { counter = new Integer(rootCounter); writeCounter(); } else { readCounter(); } } private void readCounter() { try { FileInputStream fis = new FileInputStream(counterFile); ObjectInputStream ois = new ObjectInputStream(fis); counter = (Integer) ois.readObject(); ois.close(); } catch (Exception ex) { } } private void writeCounter() { try { counterFile.delete(); FileOutputStream fos = new FileOutputStream(counterFile); ObjectOutputStream oos = new ObjectOutputStream(fos); oos.writeObject(counter); oos.flush(); oos.close(); } catch (Exception ex) { } } public synchronized int getNextCounter() { int counterVal = counter.intValue(); counter = new Integer(++counterVal); writeCounter(); return counterVal; } private Integer counter; private static String counterFileName = "counter"; private transient File counterFile; public final static int rootCounter = 0; }
⏎ com/sun/corba/se/impl/naming/pcosnaming/ServantManagerImpl.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, 325930👍, 3💬
Popular Posts:
commons-io-1.4.jar is the JAR file for Commons IO 1.4, which is a library of utilities to assist wit...
commons-fileupload-1.3.3 -sources.jaris the source JAR file for Apache Commons FileUpload 1.3., whic...
Where to find answers to frequently asked questions on Downloading and Installing ojdbc.jar - JDBC D...
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...
What Is javamail1_1_3.zip? javamail1_1_3.zip is the binary package of JavaMail API 1.1.3 in ZIP form...