• 大小: 754KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-20
  • 语言: Java
  • 标签: jxl  excel  加水印  

资源简介

使用例子 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(); } }

资源截图

代码片段和文件信息

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     821565  2010-04-19 11:08  jxl.jar

     文件     196014  2010-04-19 09:48  kkkk.bmp

     文件     208896  2010-04-19 11:10  aaaa.xls

----------- ---------  ---------- -----  ----

              1226475                    3


评论

共有 条评论