Skip to content

Instantly share code, notes, and snippets.

@epickrram
Created June 4, 2015 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save epickrram/29914403afd1bd17942d to your computer and use it in GitHub Desktop.
Save epickrram/29914403afd1bd17942d to your computer and use it in GitHub Desktop.
RandomAccessFile.writeBytes()
/*
From http://hg.openjdk.java.net/jdk8/jdk8/jdk/file/687fd7c7986d/src/share/native/java/io/RandomAccessFile.c#l83
*/
Java_java_io_RandomAccessFile_writeBytes(JNIEnv *env,
jobject this, jbyteArray bytes, jint off, jint len) {
writeBytes(env, this, bytes, off, len, JNI_FALSE, raf_fd);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment