VSCode Java扩展launch.json设置问题

时间:2018-05-08 14:06:02

标签: java json visual-studio-code launch workspace

我似乎无法使用VSCode中的Workspace来使用Java扩展(Microsoft的扩展包)。它说我的Mainclass of Test不会存在,但是Test中有mainclass,所以我认为launch.json中有一些错误。

launch.json:

{
"version": "0.2.0",
"configurations": [
    {
        "type": "java",
        "name": "Debug (Launch)",
        "request": "launch",
        "cwd": "${workspaceFolder}",
        "console": "internalConsole",
        "stopOnEntry": false,
        "mainClass": "Test",
        "args": ""
    }
]}

这是我的结构(我知道我不应该将代码直接放在工作区中,但它也不能处理文件夹......):

enter image description here

Test.java文件只是基本的" Hello World!"。

1 个答案:

答案 0 :(得分:0)

它区分大小写。另外,当您将其保留为空时,会出现一个“弹出窗口”,您可以在其中选择合适的弹出窗口。