Calling built-in java native methods - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T18:56:45Z http://stackoverflow.com/feeds/question/917453 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/917453/calling-built-in-java-native-methods 1 Calling built-in java native methods toluju 2009-05-27T19:02:27Z 2009-05-27T19:08:42Z <p>Is it possible to call the JVM's built-in native code, i.e. the code that various class in java.lang and java.io call? In other words, can you bypass the built-in java API to access various system-level calls such as file-system access? I know I could do this by building my own native code library and calling that via JNI, but it would be elegant to not need an extra native library for functionality already built into the JVM.</p> http://stackoverflow.com/questions/917453/calling-built-in-java-native-methods/917458#917458 6 Answer by Jason Cohen for Calling built-in java native methods Jason Cohen 2009-05-27T19:03:22Z 2009-05-27T19:03:22Z <p>No you can't. It's designed that way on purpose; you would override the API contracts if you could.</p> <p>In any event, the standard library wrapper code is <em>very</em> slight and with JIT compilers you shouldn't notice any speed impact.</p> <p>Furthermore, the <em>implementation</em> of those methods are not part of the API spec. What is "native" for one implementation of Java doesn't have to be for another.</p> http://stackoverflow.com/questions/917453/calling-built-in-java-native-methods/917463#917463 0 Answer by Gandalf for Calling built-in java native methods Gandalf 2009-05-27T19:04:10Z 2009-05-27T19:04:10Z <p>If you want Native IO use the NIO classes.</p> http://stackoverflow.com/questions/917453/calling-built-in-java-native-methods/917485#917485 0 Answer by Tom Hawtin - tackline for Calling built-in java native methods Tom Hawtin - tackline 2009-05-27T19:08:42Z 2009-05-27T19:08:42Z <p>You can, of course, use reflection to call the methods providing the code is trusted. However, the non-public APIs are liable to change between updates and implementations, so pretty much pointless and absolutely non-elegant.</p>