我正在使用此代码逐行读取txt文件。
// Open the file that is the first command line parameter
FileInputStream fstream = new FileInputStream("/Users/dimitramicha/Desktop/SweetHome3D1.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
// Read File Line By Line
int i = 0;
while ((strLine = br.readLine()) != null) {
str[i] = strLine;
i++;
}
// Close the input stream
in.close();
我将它保存在一个数组中。
之后,我想对我保存在数组中的字符串做一个if语句。但是当我这样做时它不起作用,因为(正如我所想)它也节省了空间(反斜杠)。您是否知道如何在数组中保存数据但没有空格?