gpt4 book ai didi

visual-studio-code - VS 代码在 TERMINAL 而不是 OUTPUT 中显示打印输出

转载 作者:行者123 更新时间:2023-12-04 02:35:05 24 4
gpt4 key购买 nike

我正在尝试为 Java 编程设置 VS 代码,我已经完成了。然而,有一件事特别困扰我。例如,当我运行下面的代码时,我会在 TERMINAL 选项卡中获得输出以及许多我不想看到的其他垃圾。如何更改它以便控制台中唯一的输出是“测试...”?

public class Hello{
public static void main(String[] args){
System.out.println("Testing...");
}
}

我运行代码后的输出如下图所示。即使我点击其他选项卡,它们也是空的,即使我删除/隐藏终端选项卡,每次我重新运行代码时,它都会弹出。

enter image description here

最佳答案

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug (Launch) - Current File",
"request": "launch",
"args": "",
"console": "internalConsole",
"mainClass": "${file}"
},
]
}

将此添加到您的 launch.json文件。对您来说重要的选择是 "console": "internalConsole",这会将所有内容输出到 调试控制台 选项卡而不是终端。它看起来会像这样干净。

Output in debug console

关于visual-studio-code - VS 代码在 TERMINAL 而不是 OUTPUT 中显示打印输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62345409/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com