在java中初始化具有动态大小的二维字符串数组

时间:2015-01-14 09:29:49

标签: java dynamic-arrays

我有未知数量的记录,我需要将所有记录放在字符串二维数组中。

我不知道记录的数量,因此,不知道字符串2d数组初始化所需的行数和列数。

目前我使用如下:

String[][] data = new String[100][100]; 

这里我硬编码了行数和列数,但需要在字符串2d数组中允许的动态大小。任何建议请!

Rgrds

4 个答案:

答案 0 :(得分:5)

您可以使用以下类将数据存储在HashMap中,并且可以将其转换为二维字符串数组。

public class ArrayStructure {
    private HashMap<Point, String> map = new HashMap<Point, String>();
    private int maxRow = 0;
    private int maxColumn = 0;

    public ArrayStructure() {
    }

    public void add(int row, int column, String string) {
        map.put(new Point(row, column), string);
        maxRow = Math.max(row, maxRow);
        maxColumn = Math.max(column, maxColumn);
    }

    public String[][] toArray() {
        String[][] result = new String[maxRow + 1][maxColumn + 1];
        for (int row = 0; row <= maxRow; ++row)
            for (int column = 0; column <= maxColumn; ++column) {
                Point p = new Point(row, column);
                result[row][column] = map.containsKey(p) ? map.get(p) : "";
            }
        return result;
    }
}

示例代码

public static void main(String[] args) throws IOException {
    ArrayStructure s = new ArrayStructure();
    s.add(0, 0, "1");
    s.add(1, 1, "4");

    String[][] data = s.toArray();
    for (int i = 0; i < data.length; ++i) {
        for (int j = 0; j < data[i].length; ++j)
            System.out.print(data[i][j] + " ");
        System.out.println();
    }
}

<强>输出

1  
 4 

答案 1 :(得分:1)

您可以暂时将它们存储在List<String[]>中并使用List#toArray(String[])将其转换为二维数组。

示例

public static void main(String[] args) throws IOException {
    BufferedReader r = new BufferedReader(new FileReader(new File(
            "data.txt")));

    String line;
    List<String[]> list = new ArrayList<String[]>();

    while ((line = r.readLine()) != null)
        list.add(line.split(" +"));

    String[][] data = new String[list.size()][];
    list.toArray(data);

    for (int i = 0; i < data.length; ++i) {
        for (int j = 0; j < data[i].length; ++j)
            System.out.print(data[i][j]+" ");
        System.out.println();
    }
    r.close();
}

<强> DATA.TXT

1 2 3 4 5
2 5 3
2  5  5 8

<强>输出

1 2 3 4 5
2 5 3
2 5 5 8

答案 2 :(得分:1)

您可以使用文字的空二维数组进行初始化:

String[][] data = new String[][]{{}}

答案 3 :(得分:0)

这应该有效:

public static void main(String args[]) throws IOException {
    // create the object
    String[][] data;

    // ----- dinamically know the matrix dimension ----- //
    BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));
    int r = Integer.parseInt(bufferedReader.readLine());
    int c = Integer.parseInt(bufferedReader.readLine());
    // ------------------------------------------------ //

    // allocate the object
    data = new String[r][c];

    // init the object
    for (int i = 0; i < r; i++)
        for (int j = 0; j < c; j++)
            data[i][j] = "hello";
}

在此示例中,您了解矩阵维度运行时,通过控制台手动指定它。