我在安装Visual Studio代码安装程序时一直遇到麻烦。我已经安装了jdk,并且想调试我的代码。
我使用了本教程。 https://code.visualstudio.com/blogs/2017/09/28/java-debug
但是,代码不会在json.file内部自动生成。当我想调试代码并生成调试json.file时。它不起作用。
以下是Json文件作为代码示例:
{
// 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 (Attach)",
"request": "attach",
"hostName": "localhost",
"port": 0
},
{
"type": "java",
"name": "Debug (Launch)",
"request": "launch",
"mainClass": "vscode.hallo.java"
}
]
}
我无法调试代码。我收到错误消息convertToDto意外类型。
答案 0 :(得分:0)
可能的原因是您的bin路径指向jre。但是Java Debugger要求您改用JDK。因此,此修复程序将VS Code中的java.home
用户设置更改为JDK主目录。
答案 1 :(得分:0)
就我而言,请卸载并重新安装“ C / C ++扩展名”,然后解决问题。 (我的情况发生在C ++调试环境中)