不能有大于10 * 10个字符的文件

时间:2011-09-29 00:35:58

标签: java

是什么让它只能输入10 * 10个文本文件

package game;

import java.io.*;
import java.util.*;

public class Level {

static public void main(String[] args) throws IOException {
    File f = new File("Data1.txt");
    int[][] m = Map(f);
    for (int x = 0; x < m.length; x++) {
        for (int y = 0; y < m[x].length; y++) {
            System.out.print(m[x][y]);
        }
        System.out.println();
    }
}

public static int[][] Map(File f) throws IOException {

    ArrayList line = new ArrayList();
    BufferedReader br = new BufferedReader(new FileReader(f));
    String s = null;
    while ((s = br.readLine()) != null) {
        line.add(s);
    }
    int[][] map = new int[line.size()][];
    for (int i = 0; i < map.length; i++) {
        s = (String) line.get(i);
        StringTokenizer st = new StringTokenizer(s, " ");
        int[] arr = new int[st.countTokens()];
        for (int j = 0; j < arr.length; j++) {
            arr[j] = Integer.parseInt(st.nextToken());
        }
        map[i] = arr;
    }
    return map;
}
}

如果我输入的文本文件是 它可以使用10 * 10或更少的字符 否则它出现了numberformatexception

固定

包游戏;

import java.io.*;
import java.util.*;

public class Level {

    static public void main(String[] args) throws IOException {
        File f = new File("Data1.txt");
        int[][] m = Map(f);
        for (int x = 0; x < m.length; x++) {
            for (int y = 0; y < m[x].length; y++) {
                System.out.print(m[x][y]);
            }
            System.out.println();
        }
    }

    public static int[][] Map(File f) throws IOException {

        ArrayList line = new ArrayList();
        BufferedReader br = new BufferedReader(new FileReader(f));
        String s = null;
        while ((s = br.readLine()) != null) {
            line.add(s);
        }
        int[][] map = new int[line.size()][];
        for (int i = 0; i < map.length; i++) {
            s = (String) line.get(i);
            char[] m = s.toCharArray();
            String[] n = new String[m.length];
            for (int t = 0; t<m.length;t++)
            {
                n[t] = ""+m[t];
            }

            int[] arr = new int[m.length];
            for (int j = 0; j < arr.length; j++) {
                arr[j] = Integer.parseInt(n[j]);
            }
            map[i] = arr;
        }
        return map;
    }
}

2 个答案:

答案 0 :(得分:2)

与评论中的注释相反,只要有足够的空格,您的程序似乎适用于大文件和长行。

我认为您的问题实际上是,只要文本文件的标记超过10个字符,就会抛出NumberFormatException。

那是因为Integer.MAX_INT是2147483647,当写为字符串时有10个字符,而Integer.parseInt只能处理更多的数字。

你正在拆分空间并期望一切都要解析为整数,而且你的一些数字对于Java的整数数据类型来说太大了。

答案 1 :(得分:0)

Int的最大值为:2,147,483,647或2147483647,不带逗号。这是10个字符。尝试将11个字符的字符串解析为int将导致数字超出Int的最大值,因此,NumberFormatException。