に変換するWordのdocまたはdocx


あなたが他の誰かにWord文書を送る前に、あなたは異なる文書に関して同じように見えるので、MS Wordをインストールされていない受取人によって見られることができるように、文書をPDFに変えることを考慮するかもしれません.この記事では、PDF文書にPDFファイルを変換する方法を示しますSpire.Doc for Java 図書館.
  • Convert Word to PDF
  • Convert Word to PDF/A
  • Convert Word to Password Protected PDF
  • 依存関係を追加する


    方法1 : Mavenを使用している場合は、プロジェクトのPOMに次のコードを追加することで、アプリケーションのJARファイルを簡単にインポートできます.XMLファイル.
    <repositories>
        <repository>
            <id>com.e-iceblue</id>
            <name>e-iceblue</name>
            <url>https://repo.e-iceblue.com/nexus/content/groups/public/</url>
        </repository>
    </repositories>
    <dependencies>
        <dependency>
            <groupId>e-iceblue</groupId>
            <artifactId>spire.doc</artifactId>
            <version>5.4.2</version>
        </dependency>
    </dependencies>
    
    方法2 : Mavenを使用していない場合は、JARファイルをダウンロードできますthis link , ZIPファイルを抽出して、spireをインポートします.doc.libフォルダの下のJARファイルをプロジェクトに依存します.

    ワードをPDFに変換する


    PDFに変換する単語は非常に簡単に尖塔です.Java用のドキュメント.次の2つの手順に従ってください.
  • ドキュメントクラスのインスタンスを作成し、パラメーターとしてWord文書のファイルパスをクラスのコンストラクターに渡します.
  • ドキュメントを呼び出します.文書をPDFとして保存する方法.
  • import com.spire.doc.Document;
    import com.spire.doc.FileFormat;
    
    public class ConvertWordToPdf {
        public static void main(String[] args){
            //Create a Document instance and load a Word document
            Document doc = new Document("Sample.docx");
    
            //Save the document to PDF
            doc.saveToFile("ToPdf.pdf", FileFormat.PDF);
        }
    }
    

    ワードをPDFに変換する


    PDF/Aは、電子文書の長期保存のために設計された特別なPDF形式です.尖塔Java用のドキュメントは、次のPDF/文書に単語を変換します.
  • PDFファイル
  • PDFファイル
  • PDFファイル
  • PDFファイル
  • PDFファイル
  • PDFファイル
  • PDF
  • ファイル名
  • PDF/X - 1 A : 2001
  • Word文書をPDF/文書に変換する手順は次のとおりです.
  • ドキュメントクラスのインスタンスを作成し、パラメーターとしてWord文書のファイルパスをクラスのコンストラクターに渡します.
  • TopDfParameterListクラスのインスタンスを作成します.
  • PDF文書の適合度をtopdfParameterListを使用して指定します.SetPDFinancanceLeel(PDFCommonanceLeel)メソッド.
  • ドキュメントを呼び出します.WordDocumentをPDFに保存する方法.
  • import com.spire.doc.Document;
    import com.spire.doc.ToPdfParameterList;
    import com.spire.pdf.PdfConformanceLevel;
    
    public class ConvertWordToPdfA {
        public static void main(String[] args){
            //Create a Document instance and load a Word document
            Document doc = new Document("Sample.docx");
    
            //Create a ToPdfParameterList instance
            ToPdfParameterList parameterList = new ToPdfParameterList();
            //Set the conformance level of the PDF
            parameterList.setPdfConformanceLevel(PdfConformanceLevel.Pdf_A_1_A);
    
            //Save the document to PDF/A
            doc.saveToFile("ToPdfA.pdf", parameterList);
        }
    }
    

    パスワードをPDFに変換する


    また、PDF変換に単語の間にパスワードでPDFを暗号化することができます.以下の手順を示します.
  • ドキュメントクラスのインスタンスを作成し、パラメーターとしてWord文書のファイルパスをクラスのコンストラクターに渡します.
  • TopDfParameterListクラスのインスタンスを作成します.
  • TopDfParameterListを使用してPDFのオープンおよびアクセス許可のパスワードを設定します.getpdfsecurity ()を使用します.暗号化(OpenPassword,PermissionPassword,pdfPermissionsFlags,pdfEncryptionKeySize)メソッド.
  • ドキュメントを呼び出します.WordDocumentをPDFに保存する方法.
  • import com.spire.doc.Document;
    import com.spire.doc.ToPdfParameterList;
    import com.spire.pdf.security.PdfEncryptionKeySize;
    import com.spire.pdf.security.PdfPermissionsFlags;
    
    public class ConvertWordToPasswordProtectedPDF {
        public static void main(String[] args){
            //Create a Document instance and load a Word document
            Document doc = new Document("Sample.docx");
    
            //Create a ToPdfParameterList instance
            ToPdfParameterList toPdf = new ToPdfParameterList();
            //Set open password and permission password for PDF
            String password = "password";
            toPdf.getPdfSecurity().encrypt(password, password, PdfPermissionsFlags.None, PdfEncryptionKeySize.Key_128_Bit);
    
            //Save the Word document to PDF with password
            doc.saveToFile("ToPdfWithPassword.pdf", toPdf);
        }
    }
    

    結論


    本稿では,文書を用いて単語をPDFに変換する方法を紹介する.spire ()によって提供されるsavetofile ()メソッド.Java用のドキュメント.PDFに加えて、ドキュメントを使用することもできます.SaveToFile ()メソッドを使用してRTF , HTML , ODT , TXT , EPUB , PostScript , XML , SVG , XPSなどの他のファイル形式に変換します.