我想使用Apache POI创建一个docx文件。
我想设置一个游戏的背景颜色(即一个单词或段落的某些部分)。
我该怎么做?
是否可以通过Apache POI。
提前致谢
答案 0 :(得分:7)
Word为此提供了两种可能性。在运行中可能存在背景颜色。但也有所谓的突出显示设置。
使用XWPF
只能使用基础对象CTShd
和CTHighlight
来实现这两种可能性。但是,虽然CTShd
附带默认poi-ooxml-schemas-3.13-...jar
,但对于CTHighlight
,https://poi.apache.org/faq.html#faq-N10025中提到的完全ooxml-schemas-1.3.jar
是必需的。
示例:
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"));
}
}