-
关于产品 strut2 升级中遇到的问题
2022-04-16 19:14 -
关于产品 strut2 升级中遇到的问题
2022-04-16 19:09 -
物料分解时任务量的限制
2019-12-13 13:22sql 的 in 字符串大于 1000 个,需要让开发修改 sql 语句,将 in 条件按 999 个一组拼接.
-
大屏显示报表绕过登录??
2019-09-20 17:10这种方式,多终端访问会挤出另外一个终端。
可以在 applicationContext-security.xml 配置绕过登录 -
怎么用 poi 给 excel 页眉插入图片1
2019-09-19 17:27已解决,使用 aspose cells 相关 api 可以设置
public static void main(String[] args) throws Exception
{// 验证License if (!getLicense()) { return; } Workbook workbook = new Workbook("C:/Users/Administrator/Desktop/电子履历.xls"); PageSetup pageSetup = workbook.getWorksheets().get(1).getPageSetup(); //Setting picture at the central footer pageSetup.setHeader(0, "&G"); FileInputStream fis = new FileInputStream("C:/Users/Administrator/Desktop/logo.jpg"); byte[] picData = new byte[fis.available()]; fis.read(picData); pageSetup.setHeaderPicture(0, picData); //Pull the picture out Picture pic = pageSetup.getPicture(true, 0); //Set the aspect ratio to lock and keep it relative to the original pic.setLockAspectRatio(true); pic.setRelativeToOriginalPictureSize(true); //Set the height only pic.setHeightInch(0.8); pic.setWidthInch( pic.getWidthInch()*pic.getHeightScale() /95); fis.close(); workbook.save("C:/Users/Administrator/Desktop/电子履历.xls"); } /** * 获取license * * @return */ public static boolean getLicense() { boolean result = false; try { license = new FileInputStream("C:/Users/Administrator/Desktop/AsposeCells/AsposeCells/source/license.xml");// 凭证文件 License aposeLic = new License(); aposeLic.setLicense(license); result = true; } catch (Exception e) { e.printStackTrace(); } return result; }
jun
白俊
会员
- 3 标签
- 20 帖子
- 5 回帖
mestar-third-1.0.0.jar