我通常通过运行配置在Eclipse中输入命令行参数。但是我不知道如何在IntelliJ IDEA中实现同样的任务。


当前回答

Maytham -ɯɐɥah λɐɯ,你可以用这段代码来模拟输入文件:

System.setIn(new FileInputStream("FILE_NAME"));

或者将文件名作为参数发送,然后将其放入FileInputStream:

System.setIn(new FileInputStream(args[0]));

其他回答

自IntelliJ IDEA 2021年以来,我对这个问题添加了更新的答案。

Select Edit Configuration from the toolbar (or under the Run menu): Picture of new location of edit configuration box You now have to click on the Modify Options menu (Alt + M) to the left of where it says Build and Run, and above the drop down menu that lets you select the version of Java (or other language) that your using. After you click Modify Options the first box you will see--titled Operating System--will have a line that says "Redirect input". Click on that to add the box for input redirection. Close Modify Options. Under Build and Run, the third box down is for command line input.

Intelij IDE的图片与编辑配置框打开箭头指向cmd行输入和输入重定向

这就是它的全部。

我使用的是IDEA 2021.3.2,我遇到了一个简单的解决方案: 只需右击你的代码区:

然后选择“修改运行配置”:

在这里输入命令行参数。

要在Windows 10上的IntelliJ IDEA 2020.2.3(社区版)中执行此操作:

ALT-SHIFT-F10 0 [TAB] 7次

2020年11月更新。

用空格分隔多个程序参数。(这对我来说并不明显)

节目论证:茱莉亚52女演员

做以下步骤:-

进入运行-编辑配置->应用程序(在面板左侧)->选择你想要运行的scala应用程序->程序参数