gpt4 book ai didi

java - Java 调试器中的 "Source not found"

转载 作者:行者123 更新时间:2023-11-30 07:44:04 26 4
gpt4 key购买 nike

目前我正在尝试通过“f5”在调试器中简单地单步执行我的程序。但是,每次我遇到“找不到源”时,调试器都会退出,尽管程序实际上运行良好。

类似问题还有其他几个问题。我尝试了这些解决方案 - 特别是找到的那个 here .然而,在尝试通过调试菜单中的“source-lookup”选项添加“source”后,仍然没有成功。

代码如下:

package com.xmlParsing;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class DomParsingMain {

public static void main(String[] args) {

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();

try {
DocumentBuilder db = dbf.newDocumentBuilder();

Document doc = db.parse("DictionaryPractice.xml");

NodeList nl = doc.getElementsByTagName("definableterms");


for(int i = 0; i < nl.getLength(); i++) {

Node p = nl.item(i);

if(p.getNodeType() == Node.ELEMENT_NODE ) {

Element contents = (Element) p;
String attribute = contents.getAttribute("Introduction");
System.out.println(attribute);

}

}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}

这是我按下“f5”后的屏幕:

enter image description here

感谢您的帮助

最佳答案

下载jdk,重复这个尝试here .如果还是不行,看看我的打印,转到你的 jdk 文件夹,找到 src.zip

.java location

然后您解压缩 src,您将拥有您需要的所有 .java。 Node.java 只是您在程序中使用的类的一个示例。

src

现在您将拥有所有资源,它还可以帮助您了解您可能需要的其他资源。这也是学习一些优秀代码的好方法。

关于java - Java 调试器中的 "Source not found",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52840494/

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