如何将 JTable 颜色导出到 excel .xls 文件?

发布于 2024-11-30 17:12:51 字数 64 浏览 0 评论 0原文

如何将 JTable java swing /jidesoft 单元格背景颜色导出到 excel .xls 文件?

How to export JTable java swing /jidesoft cell background colors to excel .xls file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听风吹 2024-12-07 17:12:51

如果您想将字符串值导出到 csv 文件(Excel 支持),或者您可以使用其他库,例如 Apache POI。

public static void exportJTable (JTable table, String fileName)  throws Exception {
    StringBuilder content = new StringBuilder("");

    for (int i=0; i<table.getModel().getRowCount(); i++){
        for (int j=0; j<table.getModel().getColumnCount(); j++) {
            int col = table.convertColumnIndexToView(j);
            String value = null ;

            try {
                value = (String) table.getModel().getValueAt(i, col);
            }
            catch (java.lang.ClassCastException e) {
            }

            if ( value == null)
                value = "" ;

            // CSV file
            value.replaceAll(",", "");
            content.append(value + ",");
        }
        content.append("\n");
    }


    writeToFile(content.toString(),fileName);
}

private static void writeToFile (String data, String fileName) throws FileNotFoundException, UnsupportedEncodingException {
    File file = new File(fileName);
    PrintWriter writer = new PrintWriter(file,"UTF-8");

    writer.println(data);

    writer.close();
}

if you want to export string value into csv file (excel support it), or you can use other library for example Apache POI.

public static void exportJTable (JTable table, String fileName)  throws Exception {
    StringBuilder content = new StringBuilder("");

    for (int i=0; i<table.getModel().getRowCount(); i++){
        for (int j=0; j<table.getModel().getColumnCount(); j++) {
            int col = table.convertColumnIndexToView(j);
            String value = null ;

            try {
                value = (String) table.getModel().getValueAt(i, col);
            }
            catch (java.lang.ClassCastException e) {
            }

            if ( value == null)
                value = "" ;

            // CSV file
            value.replaceAll(",", "");
            content.append(value + ",");
        }
        content.append("\n");
    }


    writeToFile(content.toString(),fileName);
}

private static void writeToFile (String data, String fileName) throws FileNotFoundException, UnsupportedEncodingException {
    File file = new File(fileName);
    PrintWriter writer = new PrintWriter(file,"UTF-8");

    writer.println(data);

    writer.close();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文