当我尝试加载我在复制教程后开始制作的游戏时出现错误:
Exception in thread "main" java.util.NoSuchElementException
at java.util.Scanner.throwFor(Unknown Source)
at java.util.Scanner.next(Unknown Source)
at Maze.Map.readFile(Map.java:59)
at Maze.Map.<init>(Map.java:28)
at Maze.Board.<init>(Board.java:16)
at Maze.Maze.<init>(Maze.java:18)
at Maze.Maze.main(Maze.java:7)
如果您知道如何解决此错误,请提供帮助。这是代码,类文件位于顶部。
Maze.java
package Maze;
import javax.swing.JFrame;
public class Maze {
public static void main(String[] args){
new Maze();
}
public Maze(){
JFrame f = new JFrame();
f.setTitle("Maze Game");
f.setSize(500,400);
f.setLocationRelativeTo(null);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.add(new Board());
}
}
Board.java
package Maze;
import java.awt.Graphics;
import java.awt.event.*;
import javax.swing.*;
public class Board extends JPanel implements ActionListener{
private Timer timer;
private Map m;
public Board(){
m = new Map();
timer = new Timer(25, this);
timer.start();
}
public void actionPerformed(ActionEvent e){
repaint();
}
public void paint(Graphics g){
super.paint(g);
for(int y = 0;y < 14; y++){
for(int x = 0;x < 14; x++){
if(m.getMap(x , y).equals("g")){
g.drawImage(m.getGrass(), x * 32, y * 32, null);
}
if(m.getMap(x , y).equals("g")){
g.drawImage(m.getWall(), x * 32, y * 32, null);
}
}
}
}
}
Map.java
package Maze;
import java.awt.*;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.*;
import javax.swing.ImageIcon;
public class Map {
private Scanner m;
private String Map[] = new String[14];
private Image grass,
wall;
public Map(){
ImageIcon img = new ImageIcon("C://grass.png");
grass = img.getImage();
img = new ImageIcon("C://wall.png");
wall = img.getImage();
openFile();
readFile();
closeFile();
}
public Image getGrass(){
return grass;
}
public Image getWall(){
return wall;
}
public String getMap(int x, int y){
String index = Map[y].substring(x,x + 1);
return index;
}
public void openFile(){
try {
m = new Scanner(new File("C://map.txt"));
} catch (FileNotFoundException e) {
}
}
public void readFile(){
while(m.hasNext()){
for(int i = 0; i < 14; i++){
Map[i] = m.next();
}
}
}
public void closeFile(){
m.close();
}
}
提前感谢您的帮助。很抱歉之前没有发布代码,但我从未在任何地方发布过代码:/
答案 0 :(得分:1)
java.util.NoSuchElementException 是一个RuntimeException,它可以被Java中的不同类抛出,如Iterator,Enumerator,Scanner或StringTokenizer。如果底层数据结构没有任何元素Java抛出“java.util.NoSuchElementException”,那么所有这些类都有获取下一个元素或下一个标记的方法。最常见的例子是迭代hashmap而不检查是否有任何元素,这就是为什么建议在Iterator上调用next()之前使用hashNext()。
请发布代码以解决它。
答案 1 :(得分:0)
如果你正在迭代任何集合,请避免使用迭代器习语,但更现代:
for(T t : collection){
// do something with t
}
其中collection
是Collection<T>
。
这可能会修复您的错误以及您尚未找到的其他错误。
答案 2 :(得分:0)
您正在调用hasNext()
外部next()
方法for
循环导致NoSuchElementException
根据{{3}}
抛出NoSuchElementException - 如果没有更多的令牌可用
所以改变你的readFile()
方法
public void readFile()
{
for(int i = 0; i < 14; i++)
{
while(m.hasNext()){
Map[i] = m.next();
}
}
}