JDK 14 没有 rt.jar。那么 bootstrap 类 在哪里?
JDK 14 doesn't have rt.jar with it. Where are bootstrap classes then?
我在 JAVA-HOME/lib 中找到的 only jar 文件是一个名为 jrt-fs.jar 大小只有 105 KB。
那么 Runtime (bootstrap) 类 在哪里呢?
请允许我quote the migration guide:
Class and resource files previously stored in lib/rt.jar
, lib/tools.jar
, lib/dt.jar
and various other internal JAR files are stored in a more efficient format in implementation-specific files in the lib
directory.
rt.jar
文件已在 Java 9 中删除,但如果您需要在运行时 访问 类文件,您可以通过JRT 文件系统。例如,参见 。
我在 JAVA-HOME/lib 中找到的 only jar 文件是一个名为 jrt-fs.jar 大小只有 105 KB。
那么 Runtime (bootstrap) 类 在哪里呢?
请允许我quote the migration guide:
Class and resource files previously stored in
lib/rt.jar
,lib/tools.jar
,lib/dt.jar
and various other internal JAR files are stored in a more efficient format in implementation-specific files in thelib
directory.
rt.jar
文件已在 Java 9 中删除,但如果您需要在运行时 访问 类文件,您可以通过JRT 文件系统。例如,参见 。