英文:
How do I make a script in VScode so that when I press a key it will run and compile a Java program in an external terminal?
问题
在VScode中如何创建一个脚本,以便在我按下某个键时,在外部终端中运行和编译Java程序?我在C#的教程中看到过类似的内容,但是在Java方面我没有看到过相应的教程。该教程使用了launch.json
文件。
英文:
How do I make a script in VScode so that when I press a key it will run and compile a Java program in an external terminal? I saw a tutorial of it in C# but I haven't seen a tutorial of it in Java. The tutorial used the launch.json
file in it.
答案1
得分: 0
在 launch.json
中添加以下设置:
"console": "externalTerminal"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论