使用Apache POI从Excel格式化HTML格式化单元格值

时间:2013-05-17 13:57:11

标签: java html excel apache-poi apache-tika

我正在使用apache POI来阅读excel文档。至少可以说,它至今可以满足我的目的。但是我受到打击的一件事就是将单元格的值提取为HTML。

我有一个单元格,其中用户将输入一些字符串并应用一些格式(如子弹/数字/粗体/斜体)等。

所以当我读它时,内容应该是 HTML 格式,而不是POI给出的普通字符串格式。

我几乎已经完成整个POI API但无法找到任何人。我想保留一个特定列的格式,而不是整个excel。按列我的意思是,在该列中输入的文本。我希望该文本为HTML文本。

也在探索和使用 Apache Tika 。但据我所知,它只能让我得到文本而不是文本的格式。

请有人指导我。我的选项用完了。

假设我在Excel中写了我的名字是天使恶魔

我应该用Java获得的输出是My name is <b>Angel</b> and <i>Demon</i>

1 个答案:

答案 0 :(得分:3)

我将此作为unicode粘贴到xls文件的单元格A1:

<html><p>This is a test. Will this text be <b>bold</b> or <i>italic</i></p></html>

这个html行产生了这个:

这是一个测试。这段文字是粗体还是斜体

我的代码:

public class ExcelWithHtml {
    // <html><p>This is a test. Will this text be <b>bold</b> or
    // <i>italic</i></p></html>

    public static void main(String[] args) throws FileNotFoundException,
            IOException {
        new ExcelWithHtml()
                .readFirstCellOfXSSF("/Users/rcacheira/testeHtml.xlsx");
    }

    boolean inBold = false;
    boolean inItalic = false;

    public void readFirstCellOfXSSF(String filePathName)
            throws FileNotFoundException, IOException {
        FileInputStream fis = new FileInputStream(filePathName);
        XSSFWorkbook wb = new XSSFWorkbook(fis);
        XSSFSheet sheet = wb.getSheetAt(0);

        String cellHtml = getHtmlFormatedCellValueFromSheet(sheet, "A1");

        System.out.println(cellHtml);

        fis.close();
    }

    public String getHtmlFormatedCellValueFromSheet(XSSFSheet sheet,
            String cellName) {

        CellReference cellReference = new CellReference(cellName);
        XSSFRow row = sheet.getRow(cellReference.getRow());
        XSSFCell cell = row.getCell(cellReference.getCol());

        XSSFRichTextString cellText = cell.getRichStringCellValue();

        String htmlCode = "";
        // htmlCode = "<html>";

        for (int i = 0; i < cellText.numFormattingRuns(); i++) {
            try {
                htmlCode += getFormatFromFont(cellText.getFontAtIndex(i));
            } catch (NullPointerException ex) {
            }
            try {
                htmlCode += getFormatFromFont(cellText
                        .getFontOfFormattingRun(i));
            } catch (NullPointerException ex) {
            }

            int indexStart = cellText.getIndexOfFormattingRun(i);
            int indexEnd = indexStart + cellText.getLengthOfFormattingRun(i);

            htmlCode += cellText.getString().substring(indexStart, indexEnd);
        }

        if (inItalic) {
            htmlCode += "</i>";
            inItalic = false;
        }
        if (inBold) {
            htmlCode += "</b>";
            inBold = false;
        }

        // htmlCode += "</html>";
        return htmlCode;

    }

    private String getFormatFromFont(XSSFFont font) {
        String formatHtmlCode = "";
        if (font.getItalic() && !inItalic) {
            formatHtmlCode += "<i>";
            inItalic = true;
        } else if (!font.getItalic() && inItalic) {
            formatHtmlCode += "</i>";
            inItalic = false;
        }

        if (font.getBold() && !inBold) {
            formatHtmlCode += "<b>";
            inBold = true;
        } else if (!font.getBold() && inBold) {
            formatHtmlCode += "</b>";
            inBold = false;
        }

        return formatHtmlCode;
    }

}

我的输出:

This is a test. Will this text be <b>bold</b> or <i>italic</i>

我认为这是你想要的,我只是告诉你可能性,我没有使用最好的代码实践,我只是快速编程以产生输出。