我想使用Apache POI创建一个docx文件。

我想设置运行的背景颜色(即单词或段落的某些部分)。

我怎样才能做到这一点?

是否可以通过Apache POI。

提前致谢

最佳答案

Word为此提供了两种可能性。运行中确实可能存在背景颜色。但是也有所谓的突出显示设置。

使用XWPF时,只有使用基础对象CTShdCTHighlight才有可能。但是,尽管CTShd带有默认的poi-ooxml-schemas-3.13-...jar,但对于CTHighlight,则需要完整的ooxml-schemas-1.3.jar,如https://poi.apache.org/faq.html#faq-N10025中所述。

例:

import java.io.FileOutputStream;

import org.apache.poi.xwpf.usermodel.*;

import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTShd;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STShd;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STHighlightColor;
/*
To
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STHighlightColor;
the fully ooxml-schemas-1.3.jar is needed as mentioned in https://poi.apache.org/faq.html#faq-N10025
*/

public class WordRunWithBGColor {

 public static void main(String[] args) throws Exception {

  XWPFDocument doc= new XWPFDocument();

  XWPFParagraph paragraph = doc.createParagraph();
  XWPFRun run=paragraph.createRun();
  run.setText("This is text with ");

  run=paragraph.createRun();
  run.setText("background color");
  CTShd cTShd = run.getCTR().addNewRPr().addNewShd();
  cTShd.setVal(STShd.CLEAR);
  cTShd.setColor("auto");
  cTShd.setFill("00FFFF");

  run=paragraph.createRun();
  run.setText(" and this is ");

  run=paragraph.createRun();
  run.setText("highlighted");
  run.getCTR().addNewRPr().addNewHighlight().setVal(STHighlightColor.YELLOW);

  run=paragraph.createRun();
  run.setText(" text.");

  doc.write(new FileOutputStream("WordRunWithBGColor.docx"));

 }
}

10-07 19:45
查看更多