我正在尝试读取并打印每个字符旁边有空格(txt 文件中的第 3 行之后)。如何在每个字符后添加空格?
我的输入文件 txt 如下所示(忽略前 3 行):
6
111211
211111
TT...
......
....T。
....T。
TT
…………
我要打印的是:
T。T。。。
。。。。。。
。。。。T。
。。。。T。
TT。。。
。。。。。。
public static void main(String[] args) throws IOException {
int size; // using it for first line
int rows; // using it for second line
int cols; // using it for third line
// pass the path to the file as a parameter
FileReader fr =
new FileReader("input1.txt");
int i;
while ((i=fr.read()) != -1) {
System.out.print((char) i);
}
}
我正在尝试获取例外的输出,但我从文件中获取了相同的行。我尝试过使用 System.out.print((char) i + " "); 或 System.out.print((char) i + ' '); 但没有成功。有什么建议吗?
浮云间
守着一只汪
青春有我
相关分类