是否可以将一些文本和值保存在 doc 文件中并将它们放在该 doc 文件内的表中?我有一个购物清单,其中有一列是产品名称,一列是数量,一列是价格。我目前正在使用它来将我的文件保存到文档中,但它们都很乱,它们无法对齐(大多数情况下,产品名称、数量和价格在文本长度上有所不同)所以我想把它们放在一个表中是确保它们排列整齐的好方法。
或者有没有办法格式化我的文本,把它们放在列上?我希望你明白我的意思,如果没有,请告诉我。
File root = android.os.Environment.getExternalStorageDirectory();
File dir = new File(root.getAbsolutePath() + "/InterSRL");
dir.mkdirs();
File file = new File(dir, "myData.doc");
try {
FileOutputStream f = new FileOutputStream(file);
PrintWriter pw = new PrintWriter(f);
for (int n = 0; n < allpret.size() - 1; n++) {
if (cant[n] != Float.toString(0)
&& pret[n] != Float.toString(0)) {
String myFormat = "%-10s %-10s %-10s%n";
pw.println(String.format(myFormat, prod[n], cant[n],
pret[n]));
}
}
pw.println((String.format("Total: %.2f", totaltest)));
pw.flush();
pw.close();
f.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
Log.i(TAG,
"******* File not found. Did you"
+ " add a WRITE_EXTERNAL_STORAGE permission to the manifest?");
} catch (IOException e) {
e.printStackTrace();
}