在Visual Studio代码中遇到launch.json遇到问题

时间:2018-09-20 04:39:21

标签: java debugging

我正在使用Java接口,当我编写主要方法时,VS代码中突然出现了一些问题。

它不会阻止执行,而是会在VS问题部分中继续显示一些错误消息。

enter image description here

当我单击“调试”时,出现以下错误。

enter image description here

enter image description here

为什么会出现此错误?我该如何解决?

1 个答案:

答案 0 :(得分:0)

看着https://code.visualstudio.com/docs/extensions/example-debuggers

格式似乎是

{
"version": "0.2.0",
"configurations": [
      {
        "type": "mock",
        "request": "launch",
        "name": "mock test",
        "program": "${workspaceFolder}/readme.md",
        "stopOnEntry": true,
        "debugServer": 4711
      }
    ]
}

因此您在{之后错过了[,在}之前错过了]

如果您发布图片,那么我可以为您进行编辑。