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:
JDK 17 java.rmi.jmod - RMI Module
JDK 17 java.rmi.jmod is the JMOD file for JDK 17 RMI (Remote Method Invocation) module.
JDK 17 RMI module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.rmi.jmod.
JDK 17 RMI module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 RMI module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.rmi.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/rmi/server/MarshalOutputStream.java
/* * Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.rmi.server; import java.io.*; import java.rmi.Remote; import java.rmi.server.RemoteStub; import sun.rmi.transport.ObjectTable; import sun.rmi.transport.Target; /** * A MarshalOutputStream extends ObjectOutputStream to add functions * specific to marshaling of remote object references. If it is * necessary to serialize remote objects or objects that contain * references to remote objects a MarshalOutputStream must be used * instead of ObjectOutputStream. <p> * * A new MarshalOutputStream is constructed to serialize remote * objects or graphs containing remote objects. Objects are written to * the stream using the ObjectOutputStream.writeObject method. <p> * * MarshalOutputStream maps remote objects to the corresponding remote * stub and embeds the location from which to load the stub * classes. The location may be ignored by the client but is supplied. */ public class MarshalOutputStream extends ObjectOutputStream { /** * Creates a marshal output stream with protocol version 1. */ public MarshalOutputStream(OutputStream out) throws IOException { this(out, ObjectStreamConstants.PROTOCOL_VERSION_1); } /** * Creates a marshal output stream with the given protocol version. */ @SuppressWarnings("removal") public MarshalOutputStream(OutputStream out, int protocolVersion) throws IOException { super(out); this.useProtocolVersion(protocolVersion); java.security.AccessController.doPrivileged( new java.security.PrivilegedAction<Void>() { public Void run() { enableReplaceObject(true); return null; } }); } /** * Checks for objects that are instances of java.rmi.Remote * that need to be serialized as proxy objects. */ @SuppressWarnings("deprecation") protected final Object replaceObject(Object obj) throws IOException { if ((obj instanceof Remote) && !(obj instanceof RemoteStub)) { Target target = ObjectTable.getTarget((Remote) obj); if (target != null) { return target.getStub(); } } return obj; } /** * Serializes a location from which to load the specified class. */ protected void annotateClass(Class<?> cl) throws IOException { writeLocation(java.rmi.server.RMIClassLoader.getClassAnnotation(cl)); } /** * Serializes a location from which to load the specified class. */ protected void annotateProxyClass(Class<?> cl) throws IOException { annotateClass(cl); } /** * Writes the location for the class into the stream. This method can * be overridden by subclasses that store this annotation somewhere * else than as the next object in the stream, as is done by this class. */ protected void writeLocation(String location) throws IOException { writeObject(location); } }
⏎ sun/rmi/server/MarshalOutputStream.java
Or download all of them as a single archive file:
File name: java.rmi-17.0.5-src.zip File size: 220001 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.scripting.jmod - Scripting Module
2023-11-06, 9933👍, 0💬
Popular Posts:
pache Derby is an open source relational database implemented entirely in Java and available under t...
What Is jaxb-api-2.1.6.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Java ...
JDK 11 jdk.crypto.mscapi.jmod is the JMOD file for JDK 11 Crypto MSCAPI module. JDK 11 Crypto MSCAPI...
Java Servlet 3.0 Specification API. JAR File Size and Download Location: File name: servlet-api.jar,...
What Is poi-scratchpad-5.2.3.jar ?poi-scratchpad-5.2.3.jar is one of the JAR files for Apache POI 5....