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/internal/CosNaming/BootstrapServer.java
/* * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.internal.CosNaming; import java.util.Enumeration; import java.util.Properties; import java.io.File; import java.io.FileInputStream; import com.sun.corba.se.spi.orb.ORB ; import com.sun.corba.se.spi.resolver.Resolver ; import com.sun.corba.se.spi.resolver.LocalResolver ; import com.sun.corba.se.spi.resolver.ResolverDefault ; import com.sun.corba.se.impl.orbutil.CorbaResourceUtil; import com.sun.corba.se.impl.orbutil.ORBConstants; /** * Class BootstrapServer is the main entry point for the bootstrap server * implementation. The BootstrapServer makes all object references * defined in a configurable file available using the old * naming bootstrap protocol. */ public class BootstrapServer { private ORB orb; /** * Main startup routine for the bootstrap server. * It first determines the port on which to listen, checks that the * specified file is available, and then creates the resolver * that will be used to service the requests in the * BootstrapServerRequestDispatcher. * @param args the command-line arguments to the main program. */ public static final void main(String[] args) { String propertiesFilename = null; int initialPort = ORBConstants.DEFAULT_INITIAL_PORT; // Process arguments for (int i=0;i<args.length;i++) { // Look for the filename if (args[i].equals("-InitialServicesFile") && i < args.length -1) { propertiesFilename = args[i+1]; } // Was the initial port specified? If so, override // This property normally is applied for the client side // configuration of resolvers. Here we are using it to // define the server port that the with which the resolvers // communicate. if (args[i].equals("-ORBInitialPort") && i < args.length-1) { initialPort = java.lang.Integer.parseInt(args[i+1]); } } if (propertiesFilename == null) { System.out.println( CorbaResourceUtil.getText("bootstrap.usage", "BootstrapServer")); return; } // Create a file File file = new File(propertiesFilename); // Verify that if it exists, it is readable if (file.exists() == true && file.canRead() == false) { System.err.println(CorbaResourceUtil.getText( "bootstrap.filenotreadable", file.getAbsolutePath())); return; } // Success: start up System.out.println(CorbaResourceUtil.getText( "bootstrap.success", Integer.toString(initialPort), file.getAbsolutePath())); Properties props = new Properties() ; // Use the SERVER_PORT to create an Acceptor using the // old legacy code in ORBConfiguratorImpl. When (if?) // the legacy support is removed, this code will need // to create an Acceptor directly. props.put( ORBConstants.SERVER_PORT_PROPERTY, Integer.toString( initialPort ) ) ; ORB orb = (ORB) org.omg.CORBA.ORB.init(args,props); LocalResolver lres = orb.getLocalResolver() ; Resolver fres = ResolverDefault.makeFileResolver( orb, file ) ; Resolver cres = ResolverDefault.makeCompositeResolver( fres, lres ) ; LocalResolver sres = ResolverDefault.makeSplitLocalResolver( cres, lres ) ; orb.setLocalResolver( sres ) ; try { // This causes the acceptors to start listening. orb.resolve_initial_references(ORBConstants.ROOT_POA_NAME); } catch (org.omg.CORBA.ORBPackage.InvalidName e) { RuntimeException rte = new RuntimeException("This should not happen"); rte.initCause(e); throw rte; } orb.run() ; } }
⏎ com/sun/corba/se/internal/CosNaming/BootstrapServer.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, 236556👍, 3💬
Popular Posts:
How to download and install ojdbc6.jar for Oracle 11g R2? ojdbc6.jar for Oracle 11g R2 is a Java 6, ...
Apache Log4j API provides the interface that applications should code to and provides the adapter co...
What Is poi-scratchpad-5.2.3.jar ?poi-scratchpad-5.2.3.jar is one of the JAR files for Apache POI 5....
What Is jniwrap.jar in JNIWrapper 3.7.1? winpack.jar in JNIWrapper 3.7.1 is an add-on JAR file for J...
JDK 11 jdk.rmic.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) Compiler Tool tool, ...