在我的.pptx文件中,我有多张幻灯片。每张幻灯片在同一页面上有多个表格。我编写了以下代码,通过它我可以同时在所有表中选择文本。但我想使用Apache POI
for(XSLFSlide slide : ppt.getSlides()){
for(XSLFShape shape : slide){
if(shape instanceof XSLFTable) {
t = (XSLFTable) shape;
t.getCell(1, 1).getFillColor();
System.out.println(t.getCell(1, 1).setText("This is what I wrote!!"));
}
}
}