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 - java.* 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 java.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ java/beans/NameGenerator.java
/* * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.beans; import java.util.HashMap; import java.util.IdentityHashMap; import java.util.Map; import static java.util.Locale.ENGLISH; /** * A utility class which generates unique names for object instances. * The name will be a concatenation of the unqualified class name * and an instance number. * <p> * For example, if the first object instance javax.swing.JButton * is passed into <code>instanceName</code> then the returned * string identifier will be "JButton0". * * @author Philip Milne */ class NameGenerator { private Map<Object, String> valueToName; private Map<String, Integer> nameToCount; public NameGenerator() { valueToName = new IdentityHashMap<>(); nameToCount = new HashMap<>(); } /** * Clears the name cache. Should be called to near the end of * the encoding cycle. */ public void clear() { valueToName.clear(); nameToCount.clear(); } /** * Returns the root name of the class. */ @SuppressWarnings("rawtypes") public static String unqualifiedClassName(Class type) { if (type.isArray()) { return unqualifiedClassName(type.getComponentType())+"Array"; } String name = type.getName(); return name.substring(name.lastIndexOf('.')+1); } /** * Returns a String which capitalizes the first letter of the string. */ public static String capitalize(String name) { if (name == null || name.length() == 0) { return name; } return name.substring(0, 1).toUpperCase(ENGLISH) + name.substring(1); } /** * Returns a unique string which identifies the object instance. * Invocations are cached so that if an object has been previously * passed into this method then the same identifier is returned. * * @param instance object used to generate string * @return a unique string representing the object */ public String instanceName(Object instance) { if (instance == null) { return "null"; } if (instance instanceof Class) { return unqualifiedClassName((Class)instance); } else { String result = valueToName.get(instance); if (result != null) { return result; } Class<?> type = instance.getClass(); String className = unqualifiedClassName(type); Integer size = nameToCount.get(className); int instanceNumber = (size == null) ? 0 : (size).intValue() + 1; nameToCount.put(className, new Integer(instanceNumber)); result = className + instanceNumber; valueToName.put(instance, result); return result; } } }
⏎ java/beans/NameGenerator.java
Or download all of them as a single archive file:
File name: jre-rt-java-1.8.0_191-src.zip File size: 6664831 bytes Release date: 2018-10-28 Download
⇒ JRE 8 rt.jar - javax.* Package Source Code
2023-08-23, 282023👍, 4💬
Popular Posts:
JDK 8 jconsole.jar is the JAR file for JDK 8 JConsole, which is a graphical monitoring tool to monit...
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
Apache BCEL Source Code Files are inside the Apache BCEL source package file like bcel-6.5.0-src.zip...
This package is the backport of java.util.concurrent API, introduced in Java 5.0 and further refined...
How to read XML document with XML Schema validation from socket connections with the socket\DelayedI...