文件名称:jxl添加水印 修改编译版 经过测试
文件大小:754KB
文件格式:RAR
更新时间:2014-09-07 09:10:05
jxl添加水印 修改编译版 经过测试
jxl添加水印 修改编译版 经过测试 public class testJxl { public static void main(String[] args) throws Exception { OutputStream out = new FileOutputStream("./aaaa.xls"); // 写入到FileInputStream WritableWorkbook wwb= Workbook.createWorkbook(out); WritableSheet ws1=wwb.createSheet("test1", 0) ; // 得到工作薄中的第一个工作表 File fileImg = new File("./kkkk.bmp"); byte imageData[] = new byte[(int)fileImg.length()]; FileInputStream fis = new FileInputStream(fileImg); fis.read(imageData); // must be 24 bit true-colour,bmp file // * @param imageByte // * @param widthPixel // * @param heightPixel ws1.setWaterMarkImage(imageData,459,142); wwb.write(); wwb.close(); fis.close(); out.close();
【文件预览】:
kkkk.bmp
aaaa.xls
jxl.jar