สวัสดีโลก!
“สวัสดีโลก!“รหัสมักจะเป็นตัวอย่างง่ายๆแรกที่จะเขียนโดย"Aspose.WordsสำหรับJava"และมันยังสามารถใช้เป็นแบบทดสอบสติเพื่อให้แน่ใจว่าซอฟต์แวร์ที่มีวัตถุประสงค์เพื่อรวบรวมหรือเรียกใช้รหัสแหล่งที่มาได้รับการติดตั้งอย่างถูกต้อง.
“Aspose.WordsสำหรับJava"ห้องสมุดช่วยให้นักพัฒนาเข้าถึงโดยตรงในการสร้าง,แก้ไข,ผสาน,แปลง,เปรียบเทีย PDF, DOCX, DOC, RTF, ODT, EPUB, HTML และรูปแบบไฟล์อื่นๆอีกมากมาย รองรับ.
เป็นlow codeตัวอย่างทำตามขั้นตอนเหล่านี้:
- สร้างใหม่ว่างเปล่าDocument
- เริ่มใช้งานคลาสDocumentBuilder
- แทรกข้อความลงในเอกสารเริ่มด้วยวิธีง่ายๆWrite
- เปิดDocumentที่มีอยู่จากแฟ้ม ตรวจหารูปแบบไฟล์โดยอัตโนมัติ
- Appendเอกสาร"A"ไปยังและของเอกสาร"B”
- Saveผลลัพธ์เป็นPDF
ข้อมูลโค้ดต่อไปนี้คือ"สวัสดีโลก!“ตัวอย่างการแสดงการทำงานของ"Aspose.WordsสำหรับJava"API:
// 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"); |