Java暂存文件无法在intellij 2016中执行

时间:2016-11-28 09:16:55

标签: intellij-idea intellij-16

以前我使用的是Intellij15,其中引入了临时文件功能,并且在那里成功执行了java代码。但升级到intellij16后我无法执行java类型的scrach文件。 有人能告诉我一种在intellij16中工作的方法

1 个答案:

答案 0 :(得分:1)

在Intellij IDEA 2016.3上,

Scratch 文件正常运行

遵循的步骤:

  1. 请注意,有Scratch 文件和Scratch 缓冲区,但只有前者可以运行并通过以下方式创建:
  2. enter image description here

    1. 然后选择语言:
    2. enter image description here

      1. 添加然后创建并执行所需的代码,例如:
      2. class Blah{
            public static void main(String[] args){
                System.out.println("Blah");
            }
        }
        

        请参阅以下内容:

        enter image description here