从Excel使用Apache POI HTML格式化单元格的值(HTML Formatted Cel

2019-09-04 02:00发布

我使用的Apache POI来读取Excel文件。 至少可以说,它能够为我的目的,现在。 但有一件事我在哪里得到袭击是提取为HTML单元格的值。

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

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

我几乎贯穿整个POI API走了,但没能找到任何人。 我想保持只有一个特定列的格式,而不是整个Excel。 通过柱我的意思是,这是在该列中输入的文本。 我想该文本为HTML文本。

探索和使用的Apache提卡也。 但据我所知它只能让我的文字而不是文本的格式。

请人指导我。 我跑出来的选择。

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

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

Answer 1:

我已经粘贴此为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>

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



文章来源: HTML Formatted Cell value from Excel using Apache POI