안녕하세요,세계!
“안녕하세요,세계!“코드는 종종"Java에 대한Aspose.Words"을 사용하여 작성하는 첫 번째 간단한 예이며,소스 코드를 컴파일하거나 실행하려는 소프트웨어가 올바르게 설치되었는지 확인하기 위해 정신 테스트로 사용될 수 있습니다.
“Aspose.WordsJava"라이브러리는 개발자에게 워드 및 웹 문서를 생성,수정,병합,변환,비교할 수 있는 직접 액세스를 제공합니다. PDF, DOCX, DOC, RTF, ODT, EPUB, HTML 그리고 다른 많은 파일 형식은 다음과 같습니다 지원.
Low code 스니펫은 다음 단계를 따릅니다.
- 새 빈Document만들기
- DocumentBuilder클래스 초기화
- 간단한Write방법을 사용하여 문서 시작에 텍스트 삽입
- 파일에서 기존Document을 엽니다. 파일 형식을 자동으로 감지합니다.
- Append문서"A"및 문서의"B”
- Save출력PDF
다음 코드 조각은"안녕하세요,세계!“Java"API에 대해"Aspose.Words"의 작업을 나타내는 예:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java.git. | |
Document docA = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(docA); | |
// Insert text to the document start. | |
builder.moveToDocumentStart(); | |
builder.write("First Hello World paragraph"); | |
Document docB = new Document(getMyDir() + "Document.docx"); | |
// Add document B to the and of document A, preserving document B formatting. | |
docA.appendDocument(docB, ImportFormatMode.KEEP_SOURCE_FORMATTING); | |
docA.save(getArtifactsDir() + "HelloWorld.SimpleHelloWorld.pdf"); |