我正在阅读一个文件的内容
hello ja mes 24
how are yo22u
我正在使用以下代码从文件中读取并将其存储在ArrayList<Character>
.
int readvalue;
ArrayList<Character> store=new ArrayList<Character>();
while ((readvalue = bufferReader.read()) != -1)
{
store.add((char)readvalue);
}
System.out.println(store);
这给了我这样的输出:
[h, e, l, l, o, , j, a, , m, e, s, , 2, 4,
, h, o, w, , a, r, e, , y, o, 2, 2, u,
]
我想将它们分组到一个数组的单个元素中。我希望输出如下:
hello , ,ja, ,mes, ,24,
,how, ,are, ,you22u
我怎样才能做到这一点?