这个关键字有什么用啊,好像FileOutputStream.java里面
public native void write(int b) throws IOException;private native void writeBytes(byte b[], int off, int len) throws IOException;
public void write(byte b[]) throws IOException {
    writeBytes(b, 0, b.length);
}就这么几句就实现了写入文件?其中native的作用是什么呢?请高手指教