我想使用Apache POI创建一个带有一些标记的工作簿。
我尝试使用更现代的XSSF软件包,但最终还是因为更改颜色等最简单的目的而无法使用。
我给你我的Test-class,自己尝试一下(只需在main方法中将xssf的调用更改为hssf)。
import java.awt.Desktop;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.HSSFColor;
import com.cisamag.projects.basiclibrary.logical.file.FileHelper;
public class Test {
private static File path = new File("pathtofile");
public static void main(String[] args) throws IOException{
xssf();
}
public static void xssf() throws IOException {
File f = new File(path);
if(f.exists()){
f.delete();
}
f.createNewFile();
XSSFWorkbook workbook = new XSSFWorkbook();
XSSFSheet sheet = workbook.createSheet();
XSSFCell c = sheet.createRow(1).createCell(1);
XSSFCellStyle cellStyle = c.getCellStyle();
Font font = workbook.createFont();
font.setItalic(true);
font.setColor(Font.COLOR_RED);
cellStyle.setFont(font);
c.setCellStyle(cellStyle);
c.setCellValue("HELLO");
workbook.write(new FileOutputStream(f));
Desktop.getDesktop().open(f);
}
public static void hssf() throws IOException {
File f = new File(path);
if(f.exists()){
f.delete();
}
f.createNewFile();
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet();
HSSFCell c = sheet.createRow(1).createCell(1);
HSSFCellStyle cellStyle = c.getCellStyle();
Font font = workbook.createFont();
font.setItalic(true);
font.setColor(new HSSFColor.RED().getIndex());
cellStyle.setFont(font);
c.setCellStyle(cellStyle);
c.setCellValue("HELLO");
workbook.write(new FileOutputStream(f));
Desktop.getDesktop().open(f);
}
}
答案 0 :(得分:4)
您需要先创建CellStyle - 在您的示例中c.getCellStyle()
返回默认的CellStyle(根据api docs),显然无法修改。
所以,替换
XSSFCellStyle cellStyle = c.getCellStyle();
在的示例中
XSSFCellStyle cellStyle = workbook.createCellStyle();
它应该有用。