我在Location
类中设置了一个解析xml文件的方法。但是当我尝试在main方法中从main类调用该方法时,它似乎没有被调用。
我在locObj.parseNetwork();
上设置了一个断点,但它永远不会被触发,执行后println就会被解雇,所以不确定问题是什么。
有谁知道为什么没有调用parseNetwork
?
这就是我从main调用方法的方法:
public class GrailQuestMain {
public static void main(String[] args) throws Exception {
//Parse in the xml file
Location locObj = new Location();
locObj.parseNetwork();
//Start screen prompt
System.out.println("********************************GRAIL QUEST************************************");
System.out.println("-------------------------------------------------------------------------------");
System.out.println("-------------------------------------------------------------------------------");
System.out.println("Hit enter to begin your quest to Cyprus..");
new Scanner(System.in).nextLine();
System.out.println("Loaded..");
}
}
这是Location类中的实际方法,两个类都在同一个包中:
public class Location implements Lookable{
private List<AbstractGameCharacter> observers = new ArrayList<AbstractGameCharacter>();
private List<Thing> objects = new ArrayList<Thing>();
private List<Exit> exits = new ArrayList<Exit>();
private String name;
private String description;
public void enter(AbstractGameCharacter gc){
observers.add(gc);
}
public void exit(GameChacter gc){
observers.remove(gc);
}
public void parseNetwork() throws ParserConfigurationException, SAXException, IOException{
//Get the DOM Builder Factory
DocumentBuilderFactory factory =
DocumentBuilderFactory.newInstance();
//Get the DOM Builder
DocumentBuilder builder = factory.newDocumentBuilder();
//Load and Parse the XML document
//document contains the complete XML as a Tree.
Document document =
builder.parse(new File("network.xml"));
NodeList locationName = document.getElementsByTagName("location name");
}
}
在方法调用之前添加了println并获得输出,但似乎仍然没有调用方法:
答案 0 :(得分:1)
鉴于您的上述代码应该成功调用parseNetwork()
,我想您想要检查您的断点位置?或者在parseNetwork()
中输入一些输出,看看它是否被打印出来。
这不是由于在执行期间抛出任何异常,因为它不能在该方法调用之后打印行,因为您没有处理parseNetwork()
抛出的异常