我有一个包含 8 列的文本文件。这些列必须左对齐。我已经使用 Formatter.format() 进行了尝试。但它没有用。文件是..
test.txt 0 0 ছোট JJ B-JJP o -
test.txt 0 1 ছেলের NN B-NP o -
test.txt 0 2 জন্মতিথি NN B-NP o -
我试过的代码是..
/****s1,s2.. contains the token(string) of each line of the file***/
fm.format("%-25s %-3s %3s %-30s %-5s %-8s %-20s %-15s",
s1,s2,s3,s4,s5,s6,s7,s8);
str=fm.toString();
line.set(i, str);