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