Skip to content
Advertisement

No Such Element Exception?

So here is my code:

JavaScript

For some reason I get a No Such Element Exception

JavaScript

I’m not sure why though. Basically my program is searching through two text files – armor.txt and TreasureClassEx.txt. getTreasureClass receives a treasure class from a monster and searches through the txt until it reaches a base armor item (a string that does not start with tc:.) It then searches getArmor for an armor that matches the name of the base armor it got in treasure class. Any advice would be appreciated! Thanks!

The link to the txt files is here: http://www.cis.upenn.edu/~cis110/hw/hw06/large_data.zip

Advertisement

Answer

It looks like you are calling next even if the scanner no longer has a next element to provide… throwing the exception.

JavaScript

Should be something like

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement