0

我正在尝试制作一个应用程序,以帮助用户更轻松地制作 Dungeon and Dragons 项目!

我有 3 个不同武器的列表,具有不同的统计信息等。其中 2 个列表很好地添加到了程序中,但其中 1 个抛出了 NoSuchElementException。我真的不明白为什么,因为与我拥有的其他列表相比,我找不到与该列表有任何不同的东西。

列表中的一行如下所示:

 Light Melee Weapon,1d4,1d6,x2,10 ft.,Slashing,Axe (Throwing),8 gp, 2lb.

http://pastebin.com/Fb2db0f1链接到整个列表,如果您想查看会导致问题。

http://pastebin.com/9Hg0Rw2a还链接到一个工作正常的列表!

我希望这个方法对你来说不会太长。我真的做了所有我能想到的尝试解决这个问题。而且我很肯定它是导致问题的列表,因为一旦我将它从它读取的目标中删除,程序运行得很好!

它在可以工作的列表上很好地运行了 for 循环,但是第一个列表不起作用._。

Exception in thread "main" java.util.NoSuchElementException
at java.util.StringTokenizer.nextToken(StringTokenizer.java:349)
at MainGUI.init(MainGUI.java:60)
at MainGUI.main(MainGUI.java:32)

public HashMap<String,Weapon> init() {
    String path = "base";
    File folder = new File(path);
    File[] listOfFiles = folder.listFiles();
    if(listOfFiles.length == 0) {
        JOptionPane.showMessageDialog(MainGUI.this, "The folder \"base\" was empty"+
                " so no weapons or armor was attempted loaded.", "Warning",
                JOptionPane.WARNING_MESSAGE);
        return new HashMap<>();
    }
    HashMap<String, Weapon> weapons = new HashMap<>();
    BufferedReader r = null;
    for(File f : listOfFiles) {
        if(f.getName().endsWith(".txt")) {
            String line;
            try {
                r = new BufferedReader(new FileReader(f));
                while((line = r.readLine()) != null) {
                    Weapon w;
                    StringTokenizer st = new StringTokenizer(line,",");
                    while(st.hasMoreTokens()) {

                        w = new Weapon(WeaponCategory.fromString(st.nextToken()),
                                st.nextToken(),st.nextToken(),st.nextToken(),
                                st.nextToken(),st.nextToken(),st.nextToken(),
                                st.nextToken(),st.nextToken());
                        weapons.put(w.getName(), w);
                    }
                }
            } catch(FileNotFoundException fnfe) {
                JOptionPane.showMessageDialog(MainGUI.this, "The File "+
                    f.getName() + " was not found.", "Error",
                    JOptionPane.ERROR_MESSAGE);
            } catch(IOException ioe) {
                JOptionPane.showMessageDialog(MainGUI.this, "There was a problem reading "+
                        f.getName() + ".", "Error",
                        JOptionPane.ERROR_MESSAGE);
            }
        }
    }
    try {
        r.close();
    } catch (IOException ex) {
        JOptionPane.showMessageDialog(MainGUI.this, "An error occured while"
                + "closing the File Reader Stream:\n"+ex.getMessage(),
                "Error", JOptionPane.ERROR_MESSAGE);
    }
    return weapons;
}
4

4 回答 4

0

尝试简单...

    String splitString = "Hi! Amazing! wonderful!"
    for (String token : splitString.split("!")) {
        System.out.println(token.toString());
    }
  • 结果:

       Hi!
       Amazing!
       wonderful!
    
于 2014-02-06T13:05:43.763 回答
0

Stringtokenizer 现在有点老派了。

如果您确定不会有包含逗号的条目,则可以使用 Scanner 或仅使用逗号拆分。

如果您使用 split ,您可以检查部件中的条目数量是否包含正确数量的元素:

 String[] parts = line.split(",")
 if (parts.length != 9){
   throw new RuntimeException("Bad line : " + line);
 }
 ...
 //continue processing 

您还可以有一个在每一行上递增的计数器,然后您可以显示哪一行导致异常。

于 2012-06-21T16:31:33.143 回答
0

像这样的代码

                while(st.hasMoreTokens()) {

                    w = new Weapon(WeaponCategory.fromString(st.nextToken()),
                            st.nextToken(),st.nextToken(),st.nextToken(),
                            st.nextToken(),st.nextToken(),st.nextToken(),
                            st.nextToken(),st.nextToken());
                    weapons.put(w.getName(), w);
                }

是不安全的,因为您假设每个输入行中有 9 个项目。您应该检查项目的数量并优雅地处理无效行(例如通过写出行的内容以便更容易识别问题)。

实现此目的的一种简单方法是使用String.split()标记线。它返回 a String[],您可以在尝试访问其元素之前轻松检查其大小。

于 2012-06-21T16:29:30.223 回答
0

NoSuchElementException 是由于某些输入耗尽而发生的,而标准输入不太可能发生这种情况(它将改为阻塞)。不正确的值将产生 InputMismatchException。

如果没有任何数据类型检查,那么不用担心。但是如果你想有不同的数据类型,那么应该在添加到 bean 对象之前检查。

于 2012-06-21T16:41:48.600 回答