Чтобы правильно объявить и инициализировать массив, вам нужно знать, сколько элементов будет находиться в этом массиве. Для двумерного массива вам нужно знать, сколько строк (String [row] []) в массиве нужно будет инициализировать. Для каждой строки в 2D-массиве может быть любое количество столбцов, например:
/* A 4 Row 2D String Array with multiple
number of columns in each row. */
String[][] myArray = {
{"1", "2", "3"},
{"1", "2", "3", "4", "5"},
{"1"},
{"1", "2", "3", "4", "5", "6", "7", "8", "9", "10"}
};
Чтобы получить количество строк, вам нужно установить массив, вам нужно будет выполнить обход файла, чтобы подсчитать количество допустимых строк данных (строк), чтобы инициализировать 2D-массив вот так
String file = "File.txt";
String[][] myArray = null;
try {
// Get number of actual data rows in file...
Scanner reader = new Scanner(new File(file));
reader.nextLine(); // Read Past Header Line
int i = 0;
while (reader.hasNextLine()) {
String fileLine = reader.nextLine().trim();
// Ignore Blank Lines (if any)
if (fileLine.equals("")) {
continue;
}
i++;
}
// Initialize the Array
myArray = new String[i][];
}
catch (FileNotFoundException ex) {
ex.printStackTrace();
}
Теперь вы можете перечитать файл и заполнить массив так, как вам нужно, например, вот весь код для инициализации и заполнения двумерного массива строк с именем myArray :
String file = "File.txt";
String[][] myArray = null;
try {
// Get number of actual data rows in file...
Scanner reader = new Scanner(new File(file));
reader.nextLine(); // Read Past Header Line
int i = 0;
while (reader.hasNextLine()) {
String fileLine = reader.nextLine().trim();
// Ignore Blank Lines (if any)
if (fileLine.equals("")) {
continue;
}
i++;
}
// Initialize the Array
myArray = new String[i][];
// Re-Read file and fill the 2D Array...
i = 0;
reader = new Scanner(new File(file));
reader.nextLine(); // Read Past Header Line
while (reader.hasNextLine()) {
String fileLine = reader.nextLine().trim();
// Ignore Blank Lines (if sny)
if (fileLine.equals("")) {
continue;
}
// Slpit the read in line to a String Array of characters
String[] lineChars = fileLine.split("");
/* Iterate through the characters array and translate them...
Because so many characters can translate to the same thing
we use RegEx with the String#matches() method. */
for (int j = 0; j < lineChars.length; j++) {
// Blank
if (lineChars[j].matches("[\\.]")) {
lineChars[j] = "blank";
}
// Robot
else if (lineChars[j].matches("[ABCD]")) {
lineChars[j] = "Robot";
}
// Gear
else if (lineChars[j].matches("[\\+\\-]")) {
lineChars[j] = "Gear";
}
// FlagN
else if (lineChars[j].matches("[1-4]")) {
lineChars[j] = "Flag" + lineChars[j];
}
// Pit
else if (lineChars[j].matches("[x]")) {
lineChars[j] = "Pit";
}
// ConveyotBelt
else if (lineChars[j].matches("[v\\<\\>\\^NnSsWwEe]")) {
lineChars[j] = "ConveyorBelt";
}
// LaserEmitter
else if (lineChars[j].matches("[\\[]")) {
lineChars[j] = "LaserEmitter";
}
// LaserReciever
else if (lineChars[j].matches("[\\]\\(\\)]")) {
lineChars[j] = "LaserReciever";
}
// ............................................
// ... whatever other translations you want ...
// ............................................
// A non-translatable character detected.
else {
lineChars[j] = "UNKNOWN";
}
}
myArray[i] = lineChars;
i++;
}
reader.close(); // We're Done - close the Scanner Reader
}
catch (FileNotFoundException ex) {
ex.printStackTrace();
}
Если вы хотите отобразить содержимое вашего 2D-массива в окне консоли, вы можете сделать что-то вроде этого:
// Display the 2D Array in Console...
StringBuilder sb;
for (int i = 0; i < myArray.length; i++) {
sb = new StringBuilder();
sb.append("Line ").append(String.valueOf((i+1))).append(" Contains ").
append(myArray[i].length).append(" Columns Of Data.").
append(System.lineSeparator());
sb.append(String.join("", Collections.nCopies((sb.toString().length()-2), "="))).
append(System.lineSeparator());
for (int j = 0; j < myArray[i].length; j++) {
sb.append("Column ").append(String.valueOf((j+1))).append(": -->\t").
append(myArray[i][j]).append(System.lineSeparator());
}
System.out.println(sb.toString());
}
Размещение данных файла в ArrayList для создания двумерного массива:
Считывание файла данных в ArrayList, однако, может несколько упростить ситуацию, поскольку ArrayList или List Interface могут динамически расти по мере необходимости, и вам нужно только прочитать файл один раз. Размер требуемого массива может быть определен размером ArrayList. Вот пример, делающий то же самое, что и выше, за исключением использования ArrayList:
String file = "File.txt";
String[][] myArray = null;
ArrayList<String> dataList = new ArrayList<>();
try {
// Get number of actual data rows in file...
Scanner reader = new Scanner(new File(file));
reader.nextLine(); // Read Past Header Line
while (reader.hasNextLine()) {
String fileLine = reader.nextLine().trim();
// Ignore Blank Lines (if any)
if (fileLine.equals("")) {
continue;
}
dataList.add(fileLine); // Add data line to List
}
reader.close(); // Close the Scanner Reader - Don't need anymore
}
catch (FileNotFoundException ex) {
Logger.getLogger(GUI.class.getName()).log(Level.SEVERE, null, ex);
}
// Initialize the Array
myArray = new String[dataList.size()][];
// Iterate through the ArrayList and retrieve the data
for (int i = 0; i < dataList.size(); i++) {
String dataLine = dataList.get(i).trim();
// Split the data line into a String Array of characters
String[] lineChars = dataLine.split("");
/* Iterate through the characters array and translate them...
Because so many characters can translate to the same thing
we use RegEx with the String#matches() method. */
for (int j = 0; j < lineChars.length; j++) {
// Blank
if (lineChars[j].matches("[\\.]")) {
lineChars[j] = "blank";
}
// Robot
else if (lineChars[j].matches("[ABCD]")) {
lineChars[j] = "Robot";
}
// Gear
else if (lineChars[j].matches("[\\+\\-]")) {
lineChars[j] = "Gear";
}
// FlagN
else if (lineChars[j].matches("[1-4]")) {
lineChars[j] = "Flag" + lineChars[j];
}
// Pit
else if (lineChars[j].matches("[x]")) {
lineChars[j] = "Pit";
}
// ConveyotBelt
else if (lineChars[j].matches("[v\\<\\>\\^NnSsWwEe]")) {
lineChars[j] = "ConveyorBelt";
}
// LaserEmitter
else if (lineChars[j].matches("[\\[]")) {
lineChars[j] = "LaserEmitter";
}
// LaserReciever
else if (lineChars[j].matches("[\\]\\(\\)]")) {
lineChars[j] = "LaserReciever";
}
// ............................................
// ... whatever other translations you want ...
// ............................................
// A non-translatable character detected.
else {
lineChars[j] = "UNKNOWN";
}
}
myArray[i] = lineChars;
}