在哪里可以找到JDK中的本机代码

在哪里可以找到JDK中的本机代码

本文介绍了在哪里可以找到JDK中的本机代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在查看FileInputStream的Java代码,并对open和close方法的作用感兴趣。这些函数或它们的一部分是本机实现的。你知道我在哪里可以找到这段代码吗?此代码是否为JDK的开源许可证的一部分?

I was looking at the Java code for FileInputStream and am interested in what the open and close methods do. These functions, or parts of them, are implemented natively. Do you know where I can find this code? Is this code part of the open source license for the JDK?

推荐答案


http://java.sun.com/j2se/1.5.0/source_license.html
http://download.java.net/jdk6/source/
http://openjdk.java.net/
http://www.gnu.org/software/classpath/

这是FileInputStream代码的链接...还有特定于Windows的代码,可能是approriate目录中的其他平台。

Here is a link to the FileInputStream code... there is also code specific to Windows and presumably other platforms inthe approriate directories.

这篇关于在哪里可以找到JDK中的本机代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 17:56