我正在查看Java 字节码指令列表,发现没有任何 I/O 指令。这让我很感兴趣。System.out.println
JVM不支持 I/O 指令时如何执行方法?
如果它使用某种形式的内存映射 I/O,那么它如何与操作系统通信以读取文件描述符等?JVM 是否实现了自己的抽象层来处理 I/O 操作?Java I/O 包(java.io 和 java.nio)是用 C/C++ 实现的吗?
我正在查看Java 字节码指令列表,发现没有任何 I/O 指令。这让我很感兴趣。System.out.println
JVM不支持 I/O 指令时如何执行方法?
如果它使用某种形式的内存映射 I/O,那么它如何与操作系统通信以读取文件描述符等?JVM 是否实现了自己的抽象层来处理 I/O 操作?Java I/O 包(java.io 和 java.nio)是用 C/C++ 实现的吗?
如果您查看库源代码,您会发现所有与低级 API(OS 等)的接口都是使用本机代码完成的。
例如,采取FileOutputStream
:
/**
* Opens a file, with the specified name, for writing.
* @param name name of file to be opened
*/
private native void open(String name) throws FileNotFoundException;
/**
* Writes the specified byte to this file output stream. Implements
* the <code>write</code> method of <code>OutputStream</code>.
*
* @param b the byte to be written.
* @exception IOException if an I/O error occurs.
*/
public native void write(int b) throws IOException;
/**
* Writes a sub array as a sequence of bytes.
* @param b the data to be written
* @param off the start offset in the data
* @param len the number of bytes that are written
* @exception IOException If an I/O error has occurred.
*/
private native void writeBytes(byte b[], int off, int len) throws IOException;
然后是相应的 C 文件(通常是特定于操作系统的)。