溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java如何實現(xiàn)Excel文件轉PDF無水印無限制

發(fā)布時間:2022-06-09 09:25:59 來源:億速云 閱讀:443 作者:zzz 欄目:開發(fā)技術

這篇“Java如何實現(xiàn)Excel文件轉PDF無水印無限制”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Java如何實現(xiàn)Excel文件轉PDF無水印無限制”文章吧。

一、jar破解

1.項目遠程倉庫配置

aspose-cells 這個需要配置單獨的倉庫地址才能下載,不會配置的可以去官網(wǎng)直接下載jar引入項目代碼中。

<repositories>
        <repository>
            <id>AsposeJavaAPI</id>
            <name>Aspose Java API</name>
            <url>https://repository.aspose.com/repo/</url>
        </repository>
    </repositories>

2.pom文件引入相關依賴

        <!-- https://mvnrepository.com/artifact/com.aspose/aspose-cells -->
        <dependency>
            <groupId>com.aspose</groupId>
            <artifactId>aspose-cells</artifactId>
            <version>21.8</version>
        </dependency>
       <dependency>
            <groupId>org.javassist</groupId>
            <artifactId>javassist</artifactId>
            <version>3.20.0-GA</version>
        </dependency>

Javassist是一個開源的分析、編輯和創(chuàng)建Java字節(jié)碼的類庫。 

3.代碼破解 

import javassist.*;
 
import java.io.*;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.jar.JarOutputStream;
 
public class ExcelJarCrack {
    public static void main(String[] args) throws Exception {
        String jarPath = "C:\\Users\\liuya\\Desktop\\jar\\aspose-cells-21.8.jar";
        crack(jarPath);
    }
 
    private static void crack(String jarName) throws NotFoundException, CannotCompileException, IOException {
        //這一步是完整的jar包路徑
        ClassPool.getDefault().insertClassPath(jarName);
        CtClass LicenseClass = ClassPool.getDefault().getCtClass("com.aspose.cells.License");
        CtMethod[] aMethods = LicenseClass.getDeclaredMethods("a");
        for (CtMethod aMethod : aMethods) {
            CtClass returnType=aMethod.getReturnType();
            if(returnType.getName().equals("boolean")){
                aMethod.setBody("{return true;}");
                break;
            }
        }
        //將文件名命名成備份文件
       File file=new File(jarName);
       LicenseClass.writeFile(file.getParent());
       disposeJar(jarName);
    }
 
    private static void disposeJar(String jarName) {
        List<String> deletes = new ArrayList<>();
        deletes.add("META-INF/37E3C32D.SF");
        deletes.add("META-INF/37E3C32D.RSA");
        List<String> replaces = new ArrayList<>();
        replaces.add("com/aspose/cells/License.class");
        File oriFile = new File(jarName);
        if (!oriFile.exists()) {
            System.out.println("######Not Find File:" + jarName);
            return;
        }
        //將文件名命名成備份文件
        String bakJarName = jarName.substring(0, jarName.length() - 3) + "cracked.jar";
        try {
            //創(chuàng)建文件(根據(jù)備份文件并刪除部分)
            JarFile jarFile = new JarFile(jarName);
            JarOutputStream jos = new JarOutputStream(new FileOutputStream(bakJarName));
            Enumeration entries = jarFile.entries();
            while (entries.hasMoreElements()) {
                JarEntry entry = (JarEntry) entries.nextElement();
                if (!deletes.contains(entry.getName())) {
                    if(replaces.contains(entry.getName())){
                        System.out.println("Replace:-------" +entry.getName());
                        JarEntry jarEntry = new JarEntry(entry.getName());
                        jos.putNextEntry(jarEntry);
                        FileInputStream fin = new FileInputStream(oriFile.getParent()+ "/"+entry.getName());
                        byte[] bytes = readStream(fin);
                        jos.write(bytes, 0, bytes.length);
                    }else {
                        jos.putNextEntry(entry);
                        byte[] bytes = readStream(jarFile.getInputStream(entry));
                        jos.write(bytes, 0, bytes.length);
                    }
                } else {
                    System.out.println("Delete:-------" + entry.getName());
                }
            }
            jos.flush();
            jos.close();
            jarFile.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
 
    private static byte[] readStream(InputStream inStream) throws Exception {
        ByteArrayOutputStream outSteam = new ByteArrayOutputStream();
        byte[] buffer = new byte[1024];
        int len = -1;
        while ((len = inStream.read(buffer)) != -1) {
            outSteam.write(buffer, 0, len);
        }
        outSteam.close();
        inStream.close();
        return outSteam.toByteArray();
    }
 
}

修改為你本機的aspose-cells-21.8.jar路徑,然后運行主方法,破解成功后,會再同級文件夾下生成一個aspose-cells-21.8.cracked.jar包,用這個包替換原來的aspose-pdf-21.8.jar包即可。

二、Excel轉PDF

1.代碼實現(xiàn)

import com.aspose.cells.License;
import com.aspose.cells.SaveFormat;
import com.aspose.cells.Workbook;
 
import java.io.FileOutputStream;
 
public class PdfUtils {
 
    public static void main(String[] args) {
        excelToPdf("C:\\Users\\liuya\\Desktop\\excel\\test.xlsx");
    }
 
    /**
     * Excel文件轉換
     * @param excelPath 需要被轉換的excel全路徑帶文件名
     * @Return void
     */
    public static void excelToPdf(String excelPath) {
        License license = new License();
        license.setLicense("C:\\Users\\liuya\\Desktop\\jar\\Aspose.License.xml");
        long old = System.currentTimeMillis();
        try {
            //新建一個pdf文檔
            String pdfPath=excelPath.substring(0,excelPath.lastIndexOf("."))+".pdf";
            //Excel文件數(shù)據(jù)
            Workbook wb = new Workbook(excelPath);
            FileOutputStream fileOS = new FileOutputStream(pdfPath);
            //保存為pdf文件
            wb.save(fileOS, SaveFormat.PDF);
            fileOS.close();
            //轉化用時
            long now = System.currentTimeMillis();
            System.out.println("EXCEL 轉 Pdf 共耗時:" + ((now - old) / 1000.0) + "秒");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
}

2.Aspose.License.xml 授權文件

代碼如下:

<License>
    <Data>
        <LicensedTo>Aspose Scotland Team</LicensedTo>
        <EmailTo>billy.lundie@aspose.com</EmailTo>
        <LicenseType>Developer OEM</LicenseType>
        <LicenseNote>Limited to 1 developer, unlimited physical locations</LicenseNote>
        <OrderID>140408052324</OrderID>
        <UserID>94236</UserID>
        <OEM>This is a redistributable license</OEM>
        <Products>
            <Product>Aspose.Total for Java</Product>
        </Products>
        <EditionType>Enterprise</EditionType>
        <SerialNumber>9a59547c-41f0-428b-ba72-7c4368f151d7</SerialNumber>
        <SubscriptionExpiry>20221231</SubscriptionExpiry>
        <LicenseVersion>3.0</LicenseVersion>
        <LicenseInstructions>http://www.aspose.com/corporate/purchase/license-instructions.aspx</LicenseInstructions>
    </Data>
    <Signature>FO3PHsblgDt8F59sMT1l1amyi9qk2V6E8dQkIP7LdTJSxDibNEFu1zOinQbqFfKv/ruttvcxoROkc1tUe0DtO6cP1Zf6J0VemgSY8i/LZECTGszRqJVQRZ0MoVnBhuPAJk5eli7fhVcF8hWd3E4XQ3LzfmJCuaj2NEteRi5Hrfg=</Signature>
</License>

因為jar已破解其核心驗證方法,里面的簽名可以隨便填寫,但是格式盡量保持一致,因為驗證其他的格式方法還在!

運行成功截圖

Java如何實現(xiàn)Excel文件轉PDF無水印無限制

Java如何實現(xiàn)Excel文件轉PDF無水印無限制

以上就是關于“Java如何實現(xiàn)Excel文件轉PDF無水印無限制”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關的知識內(nèi)容,請關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI