如何在 intellij JShell 控制台中导入自定义类

2022-09-04 02:07:52

我正在使用新的intellij Jshell控制台(此处介绍 https://blog.jetbrains.com/idea/2017/09/java-9-and-intellij-idea/)

我创建了一个简单的类文件Test2.java

public class Test2 {

    public static String test(){
        return "Hello";
    }
}

JShell 控制台能够在提示中找到该方法enter image description here

当我尝试在 intellij jshell console 上运行此命令时(Tools>Jshell Console)

Test2.test();

我收到以下错误

"C:\Program Files\Java\jdk-9.0.1\bin\java" --add-modules java.xml.bind -classpath "C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2017.3.1\lib\jshell-frontend.jar;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2017.3.1\lib\jshell-protocol.jar" com.intellij.execution.jshell.frontend.Main

ERROR: cannot find symbol
  symbol:   variable Test2
  location: class 
Rejected Test2.test()

我是否必须为 JShell 配置任何内容才能识别我的自定义类?
我已将其设置为使用项目的类路径。

代码。
enter image description here

Jshell 控制台和下面的错误。enter image description here

编辑:

我还尝试将代码移动到包中,并按照用户@NullPointer的建议将其导入Jshell中。

同样的错误仍然存在,它还给了我“错误:包天使应用程序.java不存在”错误。

enter image description here


答案 1

假设您有以下项目结构:

enter image description here

和以下代码:

enter image description here

确保在“项目设置”中设置“资源库”:File -> Project Structure -> Libraries

确保在此处使用输出位置(生成类文件的位置)!它可能因构建系统(目标/类或输出/生产等)而异。

enter image description here

它应该给你你正在寻找的结果:

enter image description here


答案 2

推荐