Java 10: "No documentation found" 对于 System.out.println(...)

Java 10: "No documentation found" for System.out.println(...)

在 debian 10 上,我使用 apt-get install openjdk-10-jdk openjdk-10-doc 安装 Java SE 10。我打电话给 jshell 并想获取 System.out.println(...) 的文档,但出现错误 <no documentation found>:

|  Welcome to JShell -- Version 10.0.1
|  For an introduction type: /help intro

jshell> System.out.println( **<tab>**
Signatures:
void PrintStream.println()
void PrintStream.println(boolean x)
void PrintStream.println(char x)
void PrintStream.println(int x)
void PrintStream.println(long x)
void PrintStream.println(float x)
void PrintStream.println(double x)
void PrintStream.println(char[] x)
void PrintStream.println(String x)
void PrintStream.println(Object x)

<press tab again to see documentation>

jshell> System.out.println( **<tab>**
void PrintStream.println()
<no documentation found>

<press tab to see next documentation>

jshell> /env

jshell> System.out.println(System.getProperty("java.class.path"))
.

jshell> 

我认为这与 as I want to get the documentation for some standard method. (This question ends in bug https://bugs.openjdk.java.net/browse/JDK-8188142 无关。问题是类路径没有正确定义)。

如何在 jshell 中获取文档?

您需要 java 10 个吗?如果没有尝试使用命令下载 java 8 sudo apt-get install openjdk-8-jre 安装 java-8 如果不行我们可以通过一些步骤来安装 java 10

如果您使用的是基于 Debian 的系统,则必须安装 openjdk-<vserion>-source 软件包才能使用 JShell 的文档。在您的情况下,您需要执行

sudo apt install openjdk-10-source

您可以在 JShell 中通过双选项卡获得的文档来自 /usr/lib/jvm/java-<version>-openjdk-amd64/lib/source.zip 文件,该文件在您安装 openjdk-<vserion>-source 包之前已失效 link。 link 指向 ../../openjdk-<vserion>/src.zip