我使用Apache POI创建了excel报告(.xls)。每当我打开它时,它都会显示一条消息“保护视图:Office已检测到此文件存在问题。编辑它可能会损害您的计算机”。如何禁用受保护的视图,我可以在代码本身内处理它吗?
只有在我将样式应用于单元格时,才会收到错误消息。
import java.io.File;
import java.io.FileOutputStream;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFDataFormat;
import org.apache.poi.hssf.usermodel.HSSFFont;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.HSSFColor;
public class Test {
public static void main(String[] args) throws Exception {
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = null;
HSSFDataFormat dtFormat = wb.createDataFormat();
HSSFRow row_data = null;
HSSFCell cell_data = null;
HSSFCellStyle style = null;
HSSFCellStyle styleSubHeader = null;
HSSFCellStyle styleLeft = null;
HSSFCellStyle styleCentre = null;
HSSFCellStyle styleBRData = null;
HSSFCellStyle styleRight = null;
HSSFCellStyle styleRPrec = null;
HSSFCellStyle styleBold = null;
HSSFCellStyle styleBRight = null;
HSSFCellStyle styleBRPrec = null;
HSSFCellStyle styleBLeftHead = null;
HSSFCellStyle styleBLeft = null;
HSSFCellStyle styleBCentre = null;
HSSFCellStyle styleRRight = null;
HSSFCellStyle styleSubTitle = null;
HSSFFont headBold = null;
HSSFFont titleBold = null;
HSSFDataFormat dtFmt = null;
HSSFCellStyle styleCenter = wb.createCellStyle();
HSSFFont fontCenter = wb.createFont();
HSSFFont font = wb.createFont();
HSSFFont fontBold = wb.createFont();
HSSFFont fontsubTitle = wb.createFont();
FileOutputStream out = new FileOutputStream(new File("sample.xls"));
try {
styleSubTitle = wb.createCellStyle();
sheet = wb.createSheet("Pricing Report");
row_data = sheet.createRow(sheet.getLastRowNum());
style = wb.createCellStyle();
style.setFillForegroundColor(HSSFColor.LIGHT_YELLOW.index);
style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
style.setBorderBottom(HSSFColor.TAN.index);
style.setBorderLeft(HSSFColor.TAN.index);
style.setBorderRight(HSSFColor.TAN.index);
style.setBorderTop(HSSFColor.TAN.index);
cell_data = row_data.createCell((short) 0);
cell_data.setCellValue("Header 1");
cell_data.setCellStyle(styleSubTitle);
cell_data.setCellStyle(style);
wb.write(out);
out.close();
System.out.println("Excel Generated");
} catch (Exception e) {
e.printStackTrace();
}
}
}
答案 0 :(得分:1)
所以你只是apache poi
古代版本的另一个用户。我建议你使用最后一个稳定版3.17
而不是那个6岁3.9
。
因此,对于稍后会发现此问题的所有人:此代码使用apache poi
版本3.10
或更低版本,并且在当前版本中不再有效。
您期望style.setBorderBottom(HSSFColor.TAN.index);
会做什么? setBorderBottom
确实设置了边框的粗细。例如,您的版本应为style.setBorderBottom(HSSFCellStyle.BORDER_THICK);
。边框颜色设置为style.setBottomBorderColor(HSSFColor.TAN.index);
。
这就是问题所在。 int
HSSFColor.TAN.index
为0x2f
,这不允许是边框粗细。这就是Excel
拒绝将该文件用作安全Excel
文件的原因。
所以:
...
style = wb.createCellStyle();
style.setFillForegroundColor(HSSFColor.LIGHT_YELLOW.index);
style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
style.setBottomBorderColor(HSSFColor.TAN.index);
style.setLeftBorderColor(HSSFColor.TAN.index);
style.setRightBorderColor(HSSFColor.TAN.index);
style.setTopBorderColor(HSSFColor.TAN.index);
style.setBorderBottom(HSSFCellStyle.BORDER_THICK);
style.setBorderLeft(HSSFCellStyle.BORDER_THICK);
style.setBorderRight(HSSFCellStyle.BORDER_THICK);
style.setBorderTop(HSSFCellStyle.BORDER_THICK);
...