是否可以在使用Java 9的Eclipse IDE中使用没有class和main方法的sysout?

时间:2017-10-18 08:20:24

标签: java eclipse java-9 jshell

由于Java 9引入了JShell的概念,它使我们能够在不创建类和方法的情况下编写代码,是否可以在eclipse中使用Java 9的这一特性?

4 个答案:

答案 0 :(得分:7)

您可以使用TM Terminal在Eclipse中运行JShell:

  • 如有必要,请安装TM Terminal(仅包含在某些Eclipse软件包中)
  • 在Eclipse中打开“终端”视图: 窗口>显示视图>其他......:终端>终端
  • 启动新的本地终端
  • 运行JShell,e。 G。在Windows上输入"C:\Program Files\Java\jdk-9\bin\jshell" -v ,然后输入 Enter

enter image description here

或者,您可以使用Scrapbook Page,它是Eclipse Java IDE的内置功能,也适用于较旧的Java版本。您将完成代码,并且可以使用项目的Java类:

enter image description here

答案 1 :(得分:3)

如果这不是一个要求Eclipse的功能,那么你可以提出一个非常基本的存根:

public static void main(String[] args) throws Exception {
     jdk.jshell.tool.JavaShellToolBuilder.builder().run();
}

执行此操作时,您可以在IDE中进一步将调试控制台用作JShell。

示例截图 enter image description here

答案 2 :(得分:1)

如果您想使用JShell(从Eclipse或从Terminal来)尝试代码,一个非常不错的选择是使用Maven JShell插件,然后从相应的(虚拟)项目中运行mvn(在Eclipse中:Right-单击“项目并运行方式-> Maven构建”。

在这种情况下,JShell知道项目依赖项中指定的所有库。

我在这里使用这个:http://www.finmath.net/finmath-experiments/montecarlo-blackscholes/

使用一些库(JavaFX,Apache commons,finmath lib)的小pom.xml可能看起来像这样:

<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>net.finmath</groupId>
    <artifactId>finmath-experiments</artifactId>
    <version>0.1.1-SNAPSHOT</version>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <build>
        <defaultGoal>clean install jshell:run</defaultGoal>
        <finalName>${project.artifactId}-${project.version}</finalName>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <release>11</release>
                    <source>11</source>
                    <target>11</target>
                </configuration>
            </plugin>
        </plugins>

        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>com.github.johnpoth</groupId>
                    <artifactId>jshell-maven-plugin</artifactId>
                    <version>1.2</version>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

    <dependencies>
        <!-- Java FX -->
        <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-base -->
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-base</artifactId>
            <version>11</version>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-controls</artifactId>
            <version>11</version>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-swing</artifactId>
            <version>11</version>
        </dependency>

        <!-- finmath-lib -->
        <dependency>
            <groupId>net.finmath</groupId>
            <artifactId>finmath-lib</artifactId>
            <version>5.0.2</version>
        </dependency>

        <dependency>
            <groupId>net.finmath</groupId>
            <artifactId>finmath-lib-plot-extensions</artifactId>
            <version>0.3.9</version>
        </dependency>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-math3</artifactId>
            <version>3.6.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.10</version>
        </dependency>
    </dependencies>

</project>

注意:就我个人而言,我更喜欢从macOS的终端运行此命令,因为JShell在那里支持“ TAB自动完成”功能,而从Eclipse运行时似乎缺少该功能。

答案 3 :(得分:1)

有多种方法可以执行此操作,如其他答案所述。但是我想告诉您一个插件,它将提供更多功能,而不仅仅是从Eclipse启动普通的JShell。

检查此Eclipse插件QuickShell

此插件将在Eclipse终端中启动JShell。像这样:

Quick Shell Terminal

您还可以选择现有的Java源代码并将其作为JShell脚本运行。例如:

Quick Shell Execute as script

.jsh和.jpage文件可以直接从Eclipse运行。

Run JSh and jpage file

PS:我是这个插件的作者。