aspose 导出为excel水印

发布于 2022-09-11 15:13:59 字数 2214 浏览 15 评论 0

在测试用aspose导出为excel时一直有水印,网上去水印的license文件都是一样的,求去水印有效办法

clipboard.png

clipboard.png

public  void excel2sql1() {
        if (!getLicense()) {          // 验证License 
        }
        try {
                File pdfFile = new File("D:/aspose/cs123.xls");// 输出路径
                Workbook workbook = new Workbook(); //工作簿
                Worksheet sheet = workbook.getWorksheets().get(0); //工作表
                Cells cells = sheet.getCells();//单元格
                cells.get(0,0).putValue("123455");


                FileOutputStream fileOS = new FileOutputStream(pdfFile);
                workbook.save(fileOS, SaveFormat.XLSX);
                fileOS.close();
        } catch (Exception e) {
                e.printStackTrace();
        }
    }
public static boolean getLicense() {
        boolean result = false;
        try {
            InputStream is = Test.class.getClassLoader().getResourceAsStream("license.xml"); //  license.xml应放在..\WebRoot\WEB-INF\classes路径下
            License aposeLic = new License();
            aposeLic.setLicense(is);
            result = true;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    }
<License>
  <Data>
    <Products>
      <Product>Aspose.Total for Java</Product>
      <Product>Aspose.Words for Java</Product>
    </Products>
    <EditionType>Enterprise</EditionType>
    <SubscriptionExpiry>20991231</SubscriptionExpiry>
    <LicenseExpiry>20991231</LicenseExpiry>
    <SerialNumber>8bfe198c-7f0c-4ef8-8ff0-acc3237bf0d7</SerialNumber>
  </Data>
  <Signature>sNLLKGMUdF0r8O1kKilWAGdgfs2BvJb/2Xp8p5iuDVfZXmhppo+d0Ran1P9TKdjV4ABwAgKXxJ3jcQTqE/2IRfqwnPf8itN8aFZlV3TJPYeD3yWE7IT55Gz6EijUpC7aKeoohTb4w2fpox58wWoF3SNp6sK6jDfiAUGEHYJ9pjU=</Signature>
</License>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巷子口的你 2022-09-18 15:13:59

license不合法,所以仍然以评估模式运行,就会有水印。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文