簡體   English   中英

如何修復java.util.NoSuchElementException錯誤

[英]How to fix java.util.NoSuchElementException error

我正在嘗試制作游戲組喜歡的紙牌游戲的簡單版本,以使我們的肢體殘疾朋友可以參加游戲之夜。 但是,當我嘗試通過文本文件將卡數據值添加到ArrayList時,我在catch塊中遇到java.util.NoSuchElementException的問題。

我試圖將值打印為Card類的cardToString()方法中定義的字符串。 當前代碼將打印捕獲的異常,然后在cardToString()方法中顯示默認情況,並在隨機的Card實例中發生各種錯誤。 第一個項目的名稱應為“ Gradydon Creed”,最后一個輸出的名稱應為“ Power Absorption”

任何幫助將不勝感激!

這是我的主要方法類:

private static int stack, type, name, text, bad, level, treasure, pLevel, modifier, rank;

public static void main(String[] args) {  

    Deck deck = new Deck();

    try {
        Scanner inputStream = null;

        inputStream = new Scanner(new FileInputStream("MunchkinIDSheet.txt"));

        while(inputStream.hasNextLine()){
            stack = inputStream.nextInt();
            type = inputStream.nextInt();
            name = inputStream.nextInt();
            text = inputStream.nextInt();
            bad = inputStream.nextInt();
            level = inputStream.nextInt();
            treasure = inputStream.nextInt();
            pLevel = inputStream.nextInt();
            modifier = inputStream.nextInt();
            rank = inputStream.nextInt();

        deck.addCard(new Card(stack, type, name, text, bad, level, treasure, pLevel, modifier, rank));
        }

        inputStream.close();
    }
    catch (Exception e) {
        System.out.println(e);
    }

    deck.list();
}

我的甲板課程:

import java.util.ArrayList;

public class Deck {
private static ArrayList<Card> deck = new ArrayList<>();

public void addCard(Card n){
    deck.add(n);
}

public static void list(){
    for(int i = 0; i <= deck.size(); i++){
        System.out.println(i + " " + Card.cardToString(deck.get(i)));
        System.out.println();
    }
  }
}

我的卡類:

public class Card {

private static int stack, type, name, text, bad, level, treasure, pLevel, modifier, rank;

private static final int DOOR = 1;
private static final int TREASURE = 2;

private static final int MONSTER = 1;
private static final int AFFILIATION = 2;
private static final int WANDERING = 3;
private static final int TEAMUP = 4;
private static final int MODIFIER = 5;
private static final int CHEAT = 6;
private static final int TRAP = 7;
private static final int POWER = 8;

private static String trs = " Treasure", pdac = "Play during any combat.\n", p = "Power: Rank ";

public Card(){
    stack = -1;
    type = -1;
    name = -1;
    text = -1;
    bad = -1;
    level = -1;
    treasure = -1;
    pLevel = -1;
    modifier = -1;
    rank = -1;
}

public Card(int stack, int type, int name, int text, int bad, int level, int treasure, int pLevel, int modifier, int rank){
    this.stack = stack;
    this.type = type;
    this.name = name;
    this.text = text;
    this.bad = bad;
    this.level = level;
    this.treasure = treasure;
    this.pLevel = pLevel;
    this.modifier = modifier;
    this.rank = rank;
}


public static String getStackAsString(){
    switch( stack ) {
        case DOOR: return "Door";
        case TREASURE: return "Treasure";
        default: return "Unknown Stack";
    }
}

public static String getTypeAsString() {
    switch( type ) {
        case MONSTER: return "Monster";
        case AFFILIATION: return "Affiliation";
        case WANDERING: return "Wandering";
        case TEAMUP: return "Team-Up";
        case MODIFIER: return "Modifier";
        case CHEAT: return "Cheat";
        case TRAP: return "Trap";
        case POWER: return "Power";
        default: return "Unknown Type";
    }
}

public static String getNameAsString(){
    switch ( name ) {
        case 0: return "Graydon Creed";
        case 1: return "Toad";
        case 2: return "Bolivar Trask";
        case 3: return "Sentinel MK I";
        case 4: return "William Stryker";
        case 5: return "Sauron";
        case 6: return "Black Tom Cassidy";
        case 7: return "Sentinel MK III";
        case 8: return "Silver Samurai";
        case 9: return "Pyro";
        case 10: return "Omega Red";
        case 11: return "The Brood";
        case 12: return "Sentinel MK V";
        case 13: return "Mojo";
        case 14: return "Lady Deathstrike";
        case 15: return "Sebastian Shaw";
        case 16: return "Blob";
        case 17: return "Mystique";
        case 18: return "Sabretooth";
        case 19: return "Phalanx";
        case 20: return "Juggernaut";
        case 21: return "Emma Frost";
        case 22: return "Nimrod";
        case 23: return "Bastion";
        case 24: return "Master Mold";
        case 25: return "Mister Sinister";
        case 26: return "Stryfe";
        case 27: return "Magneto";
        case 28: return "Onslaught";
        case 29: return "X-Men";
        case 31: return "X-Factor";
        case 33: return "X-Force";
        case 35: return "Wandering Monster";
        case 38: return "Team-Up";
        case 40: return "Invincible...";
        case 41: return "Uncanny...";
        case 42: return "Unstoppable...";
        case 43: return "New and Improved...";
        case 44: return "Vulnerable...";
        case 45: return "Cheat!";
        case 46: return "Illusion!";
        case 47: return "Evolutionary War";
        case 48: return "Mutant Massacre";
        case 49: return "Mojoworld";
        case 50: return "Brotherhood of Evil Mutants";
        case 51: return "Hellfire Club";
        case 52: return "X-Cutioner's Song";
        case 53: return "Techno-Virus";
        case 54: return "Weapon X Program";
        case 55: return "Disarmed";
        case 56: return "X-Tinction Agenda";
        case 57: return "Arcade's Murderworld";
        case 58: return "Legacy Virus";
        case 59: return "Mutant Registration Act";
        case 60: return "Flight";
        case 61: return "Optic Blasts";
        case 62: return "Telepathy";
        case 63: return "Heightened Senses";
        case 64: return "Healing Factor";
        case 65: return "Super-Agility";
        case 66: return "Energy Blasts";
        case 67: return "Telekinesis";
        case 68: return "Super-Strength";
        case 69: return "Elemental Control";
        case 70: return "Teleportation";
        case 71: return "Power Absorption";
        default: return "Unknown Name";
    }
}

public static String getTextAsString(){
    switch ( text ) {
        case 0: return "Mystique and Sabretooth may join him in combat without the use of a Wandering Monster card.";
        case 1: return "When he enters combat, roll the die.  On a 1-3, he ges +3.  On a 4-6, the player(s) in combat must discard a card.";
        case 2: return "+2 for each Sentinel in the Door discards.  You may discard this card to give a Sentinel +5.";
        case 3: return "+1 for each Ally and Power of the player(s) in combat.  You may discard this card to give a Sentinel +5.";
        case 4: return "+5 against players with no Affiliation";
        case 5: return "When he enters combat, the player(s) in combat must discard an Ally.";
        case 6: return "+6 if there is a living plant in the room.";
        case 7: return "+2 for each Ally and Power of the player(s) in combat.  You may discard this card to give a Sentinel +5.";
        case 8: return "+5 against anyone wearing Armor.  -2 against anyone with both Hands equipped.";
        case 9: return "+6 if there is an open flame in the room or a lighter on the table.";
        case 10: return "+4 against anyone who is not wearing the color red.  -1 to run away.";
        case 11: return "Hive mind!  Each player may discard one card to give The Brood +3.";
        case 12: return "+3 for each Ally and Power of the player(s) in combat.  You may discard this card to give a Sentinel +5.";
        case 13: return "+5 if there is a television in the room.  An extra +5 if it is on.";
        case 14: return "+4 against males or players not wearing Armor.  -3 against Wolverine.";
        case 15: return "+3 against X-Men.  +1 for each card the player(s) in combat have in hand and in play when he enters combat.";
        case 16: return "+3 if there is any candy or soda on the table when he enters combat.  +6 if both.";
        case 17: return "No one may help you fight her.  +3 against males.  -2 against females.";
        case 18: return "Combat bonuses played on him are worth an extra +2.";
        case 19: return "+3 for each electronic device on the table when they enter combat.";
        case 20: return "+10 if he enters combat via a Wandering Monster card.  -1 to run away.";
        case 21: return "-3 against X-Men.  +3 against females.  +6 against anyone wearing a diamond or the color white.";
        case 22: return "+2 for each Ally and Power in play.  Counts as a Sentinel.  You may discard this card to give a Sentinel +5.";
        case 23: return "+10 if Master Mold or Nimrod is in the Door discards.  Counts as a Sentinel.  You may discard this card to give a Sentinel +5.";
        case 24: return "+4 against anyone with an Affiliation.  Counts as a Sentinel.  You may discard this card to give a Sentinel +10.";
        case 25: return "He knows all your plans.  Players may not use One-Shots to aid their side in combat.";
        case 26: return "+5 against X-Factor.  -3 against X-Force.";
        case 27: return "+4 for each player in combat with at least 500 gold pieces worth of items in play.";
        case 28: return "When he enters combat, lose an Ally or Power, and he gets its bonus.  -5 against Professor X.  Will not pursue anyone Level 4 or below.";
        case 29: return "You may have two extra ranks worth of Powers.\n\nWhen another player discards an Ally, you may discard two cards and put that Ally in your hand.";
        case 31: return "When you play a Trap from your hand,you may choose to apply its effect to all players(including yourself).\n\nWhen you play a Go Up A Level card, you may discard a card to force another player to lose a Level.";
        case 33: return "Each of your Hand items is worth an additional +1.\n\nOnce per combat, you may discard a card to give either side +2.";
        case 35: return "Play this card, with a Monster from your hand, when someone (including you!) is in combat.  Your Monster joins the one already fighting.\n--\nAdd their combat strengths.\n\nIf the player(s) must flee, resolve the run away attempts separately, in the order the victim chooses.";
        case 38: return "You may have two Affiliation cards, and have all of the advantages and disadvantages of each.  OR you may have one Affiliation card and have all of its advantages and none of its disadvantages.\n\nLose this card if you lose your Affiliation card(s).";
        case 40: return "+10 to Monster\n" + pdac + "If the Monster is defeated, draw two extra Treasures.";
        case 41: return "+10 to Monster\n" + pdac + "If the Monster is defeated, draw two extra Treasures.";
        case 42: return "+5 to Monster\n" + pdac + "If the Monster is defeated, draw one extra Treasure.";
        case 43: return "+5 to Monster\n" + pdac + "If the Monster is defeated, draw one extra Treasure.";
        case 44: return "-5 to Monster\n" + pdac + "If the Monster is defeated, draw one fewer Treasure.  (Minimum of 1)";
        case 45: return "Play this card with an item you have in play or an item from your hand.\n\nThis item is legal for you to use even if it otherwise would not be.  Discard this card when you lose (sell, etc.) the attached item.";
        case 46: return pdac + "\nDiscard any one Monster in this combat, along with any cards that have been played to modify it, and replace with a Monster card from you hand.";
        case 47: return "Only the strongest survive.  Lose all items and Allies except for the item and Ally giving you the biggest bonus.  Choose one of each in case of ties.";
        case 48: return "Lose an Ally.  If you have no Allies, lose a Level.";
        case 49: return "Change the channel!  Immediately exchange all cards in hand and Allies in play with the player to your right.";
        case 50: return "You have -5 in your next combat.  Keep this in front of you as a reminder.";
        case 51: return "Your secrets have been revealed!  Lose your Affiliation(s).  If you have none, lose a Level.";
        case 52: return "Lose the Headgear you are wearing.  If you have no Headgear, lose a Level.";
        case 53: return "Lose Items worth at least 500 gold pieces.";
        case 54: return "You have -5 in your next combat, or -10 against Monsters Level 5 or below.  Keep this card in front of you as a reminder.";
        case 55: return "Lose an equipped Hand Item.";
        case 56: return "Suffer the Bad Stuff of the topmost Monster in the Door discards.";
        case 57: return "Roll the die.  On a 1, you are dead.  Otherwise, discard that many cards from your hand.";
        case 58: return "Lose two Levels.";
        case 59: return "Lose a Power and a Level.";
        case 60: return "You have +1 to run away.";
        case 61: return "An extra +1 if you are wearing glasses.";
        case 62: return "Discard one card from your hand at any time to see all of the cards in any one player's hand.";
        case 63: return "Each time you reveal a Trap, when kicking open the Door, you may roll the die.  On a 5 or higher, cancel the Trap.";
        case 64: return "If you would lose a Level or die due to a Trap or Bad Stuff, roll the die.  On a 5 or higher, cancel the effect and instead Go Up A Level!  This cannot be the winning Level.";
        case 65: return "You have +2 to run away.";
        case 66: return "You may discard up to three cards in combat, each for an extra +1";
        case 67: return "You may discard a card to try to steal an Item carried by another player.  Roll the die; 4 or higher succeeds.  Otherwise, you get caught and lose a Level.";
        case 68: return "Each empty Hand your character has is worth an extra +2.";
        case 69: return "\"Power seethes in the roiling clouds.\"";
        case 70: return "You may discard a card to try to steal an Item carried by another player.  Roll the die; 4 or higher succeeds.  Otherwise, you get caught and lose a Level.";
        case 71: return "You may discard a card to try to steal a Power carried by another player.  Roll the die; 4 or higher succeeds.  Otherwise, you get caught and lose a Level.";
        default: return "Unknown Text";
    }
}

public static String getBadAsString(){
    switch ( bad ) {
        case 0: return "Lose a card giving you the smallest bonus.";
        case 1: return "Toxic spit!  Discard a random card from your hand.";
        case 2: return "Lose an Ally or a Power.";
        case 3: return "Lose a Level.";
        case 4: return "Captured for government experiments.  You have -5 in your next combat for each of your Powers.";
        case 5: return "Energy vampire!  Lose a Power.";
        case 6: return "Shillelaghed!  Lose your Headgear.  If you aren't wearing any, discard two cards from your hand.";
        case 7: return "Lose a Level and discard a card.";
        case 8: return "Lose your Armor.  If you aren't wearing any, lose a Level.";
        case 9: return "Too hot to handle!  Discard three cards from you hand.";
        case 10: return "Lose the card giving you the biggest bonus.";
        case 11: return "Swarmed!  Roll the die and discard that many cards.";
        case 12: return "Lose a Level.  You have -5 in your next combat.";
        case 13: return "Enslaved by the Spineless Ones.  Lose your Affiliation.  If you have none, lose a Level.";
        case 14: return "You are dead.";
        case 15: return "Roll the die and discard that many cards.";
        case 16: return "He sits on you.  The next time you attempt to run away, you automatically fail.";
        case 17: return "No one believes it is really you.  You cannot offer to help or ask for help in combat until you go up a Level.";
        case 18: return "He rips you to shreds!  You are dead!";
        case 19: return "Lose all your Allies to the Techno-Virus.  If you have none, lose a Level.";
        case 20: return "Nothing stops the Juggernaut!  Lose the Armor you are wearing and a Level.";
        case 21: return "Reveal you hand.  The player to your left chooses two cards for you to discard.";
        case 22: return "Lose an Ally, a Power, and a Level.";
        case 23: return "Lose a Level, plus an additional Level for each Sentinel in the Door discards.";
        case 24: return "Lose three Levels.";
        case 25: return "Go back in time and suffer the Bad Stuff of the top two Monsters in the Door discards.";
        case 26: return "Lose your Affiliation and discard items worth at least 500 gold pieces.";
        case 27: return "Lose all items worth 300 gold pieces or more.";
        case 28: return "Lose two Levels and discard two cards from your hand.";
        default: return "Unkown Bad Stuff";
    }
}



public static String cardToString(Card c){
    switch ( type ) {
        case MONSTER:
            return "Stack: " + getStackAsString() + "\nType: " + getTypeAsString() + "\nLevel: " + getLevel() + "\nName: " + getNameAsString() + "\nText: " + getTextAsString() + "\nBad Stuff: " + getBadAsString() + "\nTreasure: " + getTreasure() + trs + "\nPlayer Level: +" + getPLevel();
        case AFFILIATION:
            return "Stack: " + getStackAsString() + "\nType: " + getTypeAsString() + "\nName: " + getNameAsString() + "\nText: " + getTextAsString();
        case WANDERING:
            return "Stack: " + getStackAsString() + "\nType: " + getTypeAsString() + "\nName: " + getNameAsString() + "\nText: " + getTextAsString();
        case TEAMUP:
            return "Stack: " + getStackAsString() + "\nType: " + getTypeAsString() + "\nName: " + getNameAsString() + "\nText: " + getTextAsString();
        case MODIFIER:
            return "Stack: " + getStackAsString() + "\nType: " + getTypeAsString() + "\nName: " + getNameAsString() + "\nText: " + getTextAsString() + "\nModifier: " + getModifier();
        case CHEAT:
            return "Stack: " + getStackAsString() + "\nType: " + getTypeAsString() + "\nName: " + getNameAsString() + "\nText: " + getTextAsString();
        case TRAP:
            return "Stack: " + getStackAsString() + "\nType: " + getTypeAsString() + "\nName: " + getNameAsString() + "\nText: " + getTextAsString();
        case POWER:
            return "Stack: " + getStackAsString() + "\nType: " + getTypeAsString() + "\nName: " + getNameAsString() + "\n" + p + getRank() + "\nText: " + getTextAsString() + "\nBonus: " + getModifier();
        default:
            return "Unknown Card";
    }
}

/**
 * @return the stack
 */
public static int getStack() {
    return stack;
}

/**
 * @return the type
 */
public static int getType() {
    return type;
}

/**
 * @return the name
 */
public static int getName() {
    return name;
}

/**
 * @return the text
 */
public static int getText() {
    return text;
}

/**
 * @return the bad
 */
public static int getBad() {
    return bad;
}

/**
 * @return the level
 */
public static int getLevel() {
    return level;
}

/**
 * @return the treasure
 */
public static int getTreasure() {
    return treasure;
}

/**
 * @return the pLevel
 */
public static int getPLevel() {
    return pLevel;
}

/**
 * @return the modifier
 */
public static int getModifier() {
    return modifier;
}

/**
 * @return the rank
 */
public static int getRank() {
    return rank;
}

}

最后是文本文件中的數據值,在代碼中另存為“ MunchkinIDSheet.txt”:

1 1 0 0 0 0 0 1 0 0
1 1 1 1 1 1 1 10 0
1 1 2 2 2 2 2 1 0 0
1 1 3 3 3 3 3 1 0 0
1 1 4 4 4 4 4 1 0 0
1 1 5 5 5 5 5 1 0 0
1 1 6 6 6 6 6 1 0 0
1 1 7 7 7 7 7 1 0 0
1 1 8 8 8 8 8 1 0 0
1 1 9 9 9 9 9 1 0 0
1 1 10 10 10 10 10 1 0 0
1 1 11 11 11 11 11 1 0 0
1 1 12 12 12 12 12 1 0 0
1 1 13 13 13 13 13 1 0 0
1 1 14 14 14 14 14 1 0 0
1 1 15 15 15 15 15 1 0 0
1 1 16 16 16 16 16 1 0 0
1 1 17 17 17 17 17 1 0 0
1 1 18 18 18 18 18 1 0 0
1 1 19 19 19 19 19 1 0 0
1 1 20 20 20 20 20 1 0 0
1 1 21 21 21 21 21 1 0 0
1 1 22 22 22 22 22 1 0 0
1 1 23 23 23 23 23 1 0 0
1 1 24 24 24 24 24 1 0 0
1 1 25 25 25 25 25 2 0 0
1 1 26 26 26 26 26 2 0 0
1 1 27 27 27 27 27 2 0 0
1 1 28 28 28 28 28 2 0 0
1 2 29 29 -1 -1 -1 0 0 0
1 2 29 29 -1 -1 -1 0 0 0
1 2 31 31 -1 -1 -1 0 0 0
1 2 31 31 -1 -1 -1 0 0 0
1 2 33 33 -1 -1 -1 0 0 0
1 2 33 33 -1 -1 -1 0 0 0
1 3 35 35 -1 -1 -1 0 0 0
1 3 35 35 -1 -1 -1 0 0 0
1 3 35 35 -1 -1 -1 0 0 0
1 4 38 38 -1 -1 -1 0 0 0
1 4 38 38 -1 -1 -1 0 0 0
1 5 40 40 -1 -1 -1 0 10 0
1 5 41 41 -1 -1 -1 0 10 0
1 5 42 42 -1 -1 -1 0 5 0
1 5 43 43 -1 -1 -1 0 5 0
1 5 44 44 -1 -1 -1 0 -5 0
1 6 45 45 -1 -1 -1 0 0 0
1 14 46 46 -1 -1 -1 0 0 0
1 7 47 47 -1 -1 -1 0 0 0
1 7 48 48 -1 -1 -1 0 0 0
1 7 49 49 -1 -1 -1 0 0 0
1 7 50 50 -1 -1 -1 0 0 0
1 7 51 51 -1 -1 -1 0 0 0
1 7 52 52 -1 -1 -1 0 0 0
1 7 53 53 -1 -1 -1 0 0 0
1 7 54 54 -1 -1 -1 0 0 0
1 7 55 55 -1 -1 -1 0 0 0
1 7 56 56 -1 -1 -1 0 0 0
1 7 57 57 -1 -1 -1 0 0 0
1 7 58 58 -1 -1 -1 0 0 0
1 7 59 59 -1 -1 -1 0 0 0
1 8 60 60 -1 -1 -1 0 1 1
1 8 61 61 -1 -1 -1 0 1 1
1 8 62 62 -1 -1 -1 0 1 1
1 8 63 63 -1 -1 -1 0 1 1
1 8 64 64 -1 -1 -1 0 1 2
1 8 65 65 -1 -1 -1 0 2 2
1 8 66 66 -1 -1 -1 0 1 2
1 8 67 67 -1 -1 -1 0 2 2
1 8 68 68 -1 -1 -1 0 2 3
1 8 69 69 -1 -1 -1 0 4 3
1 8 70 70 -1 -1 -1 0 3 3
1 8 71 71 -1 -1 -1 0 3 3

看來,您MunchkinIDSheet.txt文件中的錯誤。 看第二行:

1 1 1 1 1 1 1 10 0

只有9個元素,應該是10個,因為在while循環中,您使用10個元素進行迭代。 我認為第八個元素10應該分別為1和0:

while(inputStream.hasNextLine()){
    stack = inputStream.nextInt();
    type = inputStream.nextInt();
    name = inputStream.nextInt();
    text = inputStream.nextInt();
    bad = inputStream.nextInt();
    level = inputStream.nextInt();
    treasure = inputStream.nextInt();
    pLevel = inputStream.nextInt();
    modifier = inputStream.nextInt();
    rank = inputStream.nextInt();
    ...
}

==編輯==

您所有的72個結果將是:

0 Stack: Door
Type: Power
Name: Power Absorption
Power: Rank 3
Text: You may discard a card to try to steal a Power carried by another player.  Roll the die; 4 or higher succeeds.  Otherwise, you get caught and lose a Level.
Bonus: 3

因為讓我們看一下Card類中的一些函數:

public static String getStackAsString() {
    switch (stack) {
    case DOOR:
        return "Door";
    case TREASURE:
        return "Treasure";
    default:
        return "Unknown Stack";
    }
}

有,您可以使用stack屬性,並對其進行檢查,但是將其初始化一次,則應將該屬性傳遞給函數,例如:

public static String getStackAsString(String stack) {
    ...
}

所以,關於異常以及這個異常的問題,因為第二行中有9個元素而不是10個元素。 您需要重新查看代碼和邏輯,以實現所需的結果。 這是另一個問題。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM