Java - Word Doc 또는 Docx를 PDF로 변환

11773 단어 pdfajavawordpdf
Word 문서를 다른 사람에게 보내기 전에 다른 장치에서 동일하게 보이고 MS Word가 설치되지 않은 수신자가 볼 수 있도록 문서를 PDF로 변환하는 것을 고려할 수 있습니다. 이 문서에서는 Spire.Doc for Java 라이브러리를 사용하여 Word 문서를 Java에서 PDF, PDF/A 및 암호로 보호된 PDF로 변환하는 방법을 보여줍니다.
  • Convert Word to PDF
  • Convert Word to PDF/A
  • Convert Word to Password Protected PDF

  • 종속성 추가



    방법 1: maven을 사용하는 경우 프로젝트의 pom.xml 파일에 다음 코드를 추가하여 애플리케이션에서 JAR 파일을 쉽게 가져올 수 있습니다.

    <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을 사용하지 않는 경우 this link에서 JAR 파일을 다운로드하고 zip 파일을 추출한 다음 lib 폴더 아래의 Spire.Doc.jar 파일을 종속 항목으로 프로젝트에 가져올 수 있습니다.

    Java에서 Word를 PDF로 변환



    Java용 Spire.Doc을 사용하면 Word를 PDF로 변환하는 것이 매우 쉽습니다. 아래의 두 단계를 따르기만 하면 됩니다.
  • Document 클래스의 인스턴스를 만들고 Word 문서의 파일 경로를 클래스 생성자에 매개 변수로 전달합니다.
  • Document.saveToFile(filePath, FileFormat.PDF) 메서드를 호출하여 문서를 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);
        }
    }
    




    Java에서 Word를 PDF/A로 변환



    PDF/A는 전자 문서의 장기 보존을 위해 설계된 특수 PDF 형식입니다. Spire.Doc for Java는 Word를 다음 PDF/A 문서로 변환하는 것을 지원합니다.
  • PDF/A-1a
  • PDF/A-1b
  • PDF/A-2a
  • PDF/A-2b
  • PDF/A-2u
  • PDF/A-3a
  • PDF/A-3b
  • PDF/A-3u
  • PDF/x-1a:2001

  • 다음은 Word 문서를 PDF/A 문서로 변환하는 단계입니다.
  • Document 클래스의 인스턴스를 만들고 Word 문서의 파일 경로를 클래스 생성자에 매개 변수로 전달합니다.
  • ToPdfParameterList 클래스의 인스턴스를 만듭니다.
  • ToPdfParameterList.setPdfConformanceLevel(PdfConformanceLevel) 메서드를 사용하여 PDF 문서의 적합성 수준을 지정합니다.
  • Document.saveToFile(filePath, ToPdfParameterList) 메서드를 호출하여 Word 문서를 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);
        }
    }
    




    Java에서 Word를 암호로 보호된 PDF로 변환



    Word를 PDF로 변환하는 동안 비밀번호로 PDF를 암호화할 수도 있습니다. 다음은 이를 수행하는 단계입니다.
  • Document 클래스의 인스턴스를 만들고 Word 문서의 파일 경로를 클래스 생성자에 매개 변수로 전달합니다.
  • ToPdfParameterList 클래스의 인스턴스를 만듭니다.
  • ToPdfParameterList.getPdfSecurity().encrypt(openPassword, permissionPassword, PdfPermissionsFlags, PdfEncryptionKeySize) 메서드를 사용하여 PDF에 대한 열기 및 권한 암호를 설정합니다.
  • Document.saveToFile(filePath, ToPdfParameterList) 메서드를 호출하여 Word 문서를 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);
        }
    }
    




    결론



    이 기사에서는 Java용 Spire.Doc에서 제공하는 Document.saveToFile() 메서드를 사용하여 Word를 PDF로 변환하는 방법을 소개합니다. PDF 외에도 Document.saveToFile() 메서드를 사용하여 Word 문서를 Rtf, Html, Odt, Txt, Epub, PostScript, Xml, Svg, XPS 등과 같은 다른 파일 형식으로 변환할 수 있습니다.

    좋은 웹페이지 즐겨찾기