How to delete a paragraph using XWPF - Apache POI

落花浮王杯 提交于 2019-12-24 14:29:46

问题


I am trying to delete a paragraph from the .docx document i have generated using the Apache poi XWPF. I can do it easily with the .doc word document using HWPF as below :

    for (String paraCount : plcHoldrPargrafDletdLst) {
        Paragraph ph = doc.getRange().getParagraph(Integer.parseInt(paraCount));
        System.out.println("Deleted Paragraph Start & End: " + ph.getStartOffset() +" & " + ph.getEndOffset());
        System.out.println("Deleted Paragraph Test: " + ph.text());
        ph.delete();
    }

I tried to do the same with

doc.removeBodyElement(Integer.parseInt(paraCount));

But unfortunatley not successful enough to get the result as i want. The result document, i cannot see the paragraph deleted. Any suggestions on how to accompolish the similar functionality in XWPF.


回答1:


Ok, this question is a bit old and might not be required anymore, but I just found a different solution than the suggested one.

Hope the following code will help somebody with the same issue

    ...
    FileInputStream fis = new FileInputStream(fileName);
    XWPFDocument doc = new XWPFDocument(fis);
    fis.close();
    // Find a paragraph with todelete text inside
    XWPFParagraph toDelete = doc.getParagraphs().stream()
            .filter(p -> StringUtils.equalsIgnoreCase("todelete", p.getParagraphText()))
            .findFirst().orElse(null);
    if (toDelete != null) {
        doc.removeBodyElement(doc.getPosOfParagraph(toDelete));
        OutputStream fos = new FileOutputStream(fileName);
        doc.write(fos);
        fos.close();
    }



回答2:


Seems like you're really unable to remove paragraphs from a .docx file.

What you should be able to do is removing the content of paragraphs... So called Runs.You could try with this one:

List<XWPFParagraph> paragraphs = doc.getParagraphs();

    for (XWPFParagraph paragraph : paragraphs)
    {
        for (int i = 0; i < paragraph.getRuns().size(); i++)
           {
              paragraph.removeRun(i);
           }
    }

You can also specify which Run of which Paragraph should be removed e.g.

paragraphs.get(23).getRuns().remove(17);




回答3:


all rights reserved

// Remove all existing runs
removeRun(para, 0);

public static void removeRun(XWPFParagraph para, int depth)
{
    if(depth > 10)
    {
        return;
    }

    int numberOfRuns = para.getRuns().size();

    // Remove all existing runs
    for(int i = 0; i < numberOfRuns; i++)
    {
        try
        {
            para.removeRun(numberOfRuns - i - 1);
        }
        catch(Exception e)
        {
            //e.printStackTrace();
        }
    }

    if(para.getRuns().size() > 0)
    {
        removeRun(para, ++depth);
    }
}



回答4:


I believe your question was answered in this question.

When you are inside of a table you need to use the functions of the XWPFTableCell instead of the XWPFDocument:

cell.removeParagraph(cell.getParagraphs().indexOf(para));


来源:https://stackoverflow.com/questions/29343921/how-to-delete-a-paragraph-using-xwpf-apache-poi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!