将列写入文本文件

Writing columns into a text file

在将我的问题标记为重复问题之前,请让我先解释一下!

我知道使用 String.format 会让文本写成两列,但这不是我需要的。因为使用 String.format 只是在任意两个所需字符串之间给出指定数量的空格。我在看的是,如果在文本文件中,我们在基于 Windows 的系统中按 tab 键,它会直接跳到下一列,或者换句话说,如果我们复制文本的内容文件并将其粘贴到 ExcelSPSS 等软件中,它会自动将文本文件中的每一列粘贴到相应软件中的单独列中。这是我当前的代码,不满足我的需要:

String formatStr = "%20s %20s";
String query="some string";
int value="some int";
fop.write(String.format(formatStr,query,value));
fop.write(System.getProperty("line.separator"));
fop.flush();

您需要制表符分隔值:

String.format("%s\t%s", query, value);

\t 是 "tab" 字符的转义码。