mirror of
https://github.com/corda/corda.git
synced 2025-01-01 02:36:44 +00:00
16 lines
353 B
Java
16 lines
353 B
Java
package java.io;
|
|
|
|
public class FileInputStream extends InputStream {
|
|
private final FileDescriptor fd;
|
|
|
|
public FileInputStream(FileDescriptor fd) {
|
|
this.fd = fd;
|
|
}
|
|
|
|
public native int read() throws IOException;
|
|
|
|
public native int read(byte[] b, int offset, int length) throws IOException;
|
|
|
|
public native void close() throws IOException;
|
|
}
|