0

是否可以将一些文本和值保存在 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();
    }
4

1 回答 1

1

您可以使用Apache POI来完成。看看这里

简而言之,您可以使用 Java 读写 MS Excel 文件。此外,您可以使用 Java 读写 MS Word 和 MS PowerPoint 文件。Apache POI 是您的 Java Excel 解决方案(适用于 Excel 97-2008)。我们有完整的 API 用于移植其他 OOXML 和 OLE2 格式,欢迎其他人参与。

处理 Microsoft Word 文件的 Java API。希望能帮助到你。

于 2013-06-20T18:41:05.123 回答