Uses of Interface
java.io.ObjectInput
-
Packages that use ObjectInput 软件包 描述 java.awt.datatransfer 提供用于在应用程序之间和之间传输数据的接口和类。java.io 通过数据流,序列化和文件系统提供系统输入和输出。java.rmi.server 提供用于支持RMI服务器端的类和接口。javax.activation javax.management.loading 提供实现高级动态加载的类。jdk.jshell.execution 提供构建JShell执行引擎的实现支持。 -
-
Uses of ObjectInput in java.awt.datatransfer
Methods in java.awt.datatransfer with parameters of type ObjectInput Modifier and Type 方法 描述 void
DataFlavor. readExternal(ObjectInput is)
从序列化状态恢复此DataFlavor
。 -
Uses of ObjectInput in java.io
Classes in java.io that implement ObjectInput Modifier and Type Class 描述 class
ObjectInputStream
ObjectInputStream反序列化先前使用ObjectOutputStream编写的原始数据和对象。Methods in java.io with parameters of type ObjectInput Modifier and Type 方法 描述 void
Externalizable. readExternal(ObjectInput in)
该对象实现了readExternal方法来恢复其内容,方法是为对象,字符串和数组调用基本类型的DataInput方法和readObject。 -
Uses of ObjectInput in java.rmi.server
Methods in java.rmi.server that return ObjectInput Modifier and Type 方法 描述 ObjectInput
RemoteCall. getInputStream()
已过时。没有替换Methods in java.rmi.server with parameters of type ObjectInput Modifier and Type 方法 描述 static ObjID
ObjID. read(ObjectInput in)
构造并返回一个新ObjID
通过从解组二进制表示实例ObjectInput
实例。 -
Uses of ObjectInput in javax.activation
Methods in javax.activation with parameters of type ObjectInput Modifier and Type 方法 描述 void
MimeType. readExternal(ObjectInput in)
该对象实现了readExternal方法来恢复其内容,方法是为对象,字符串和数组调用基本类型的DataInput方法和readObject。 -
Uses of ObjectInput in javax.management.loading
Methods in javax.management.loading with parameters of type ObjectInput Modifier and Type 方法 描述 void
MLet. readExternal(ObjectInput in)
从给定的ObjectInput
恢复这个MLet的内容。 -
Uses of ObjectInput in jdk.jshell.execution
Methods in jdk.jshell.execution with parameters of type ObjectInput Modifier and Type 方法 描述 static void
Util. forwardExecutionControl(ExecutionControl ec, ObjectInput in, ObjectOutput out)
将命令从输入转发到指定的ExecutionControl
实例,然后响应回输出。Method parameters in jdk.jshell.execution with type arguments of type ObjectInput Modifier and Type 方法 描述 static ExecutionControl
Util. remoteInputOutput(InputStream input, OutputStream output, Map<String,OutputStream> outputStreamMap, Map<String,InputStream> inputStreamMap, BiFunction<ObjectInput,ObjectOutput,ExecutionControl> factory)
为给定的分组化输入和输出创建一个ExecutionControl。Constructors in jdk.jshell.execution with parameters of type ObjectInput Constructor 描述 JdiExecutionControl(ObjectOutput out, ObjectInput in)
创建一个实例。StreamingExecutionControl(ObjectOutput out, ObjectInput in)
创建一个实例。
-