こんにちは、世界!
は、“Hello,World!“コードは、多くの場合、uisng"Aspose.WordsforJava"を書く最初の簡単な例であり、ソースコードをコンパイルまたは実行するソフトウェアが正しくインストールされていることを確認するための健全性テストとして使用することもできます。
“Aspose.WordsforJava"ライブラリは、開発者がWord文書とWeb文書を作成、変更、マージ、変換、比較するための直接アクセスを提供します。 PDF, DOCX, DOC, RTF, ODT, EPUB, HTML 他の多くのファイル形式は次のとおりです サポートされている.
Below codeスニペットは次の手順に従います:
- 新しい空のDocumentを作成します
- DocumentBuilderクラスを初期化する
- 文書にテキストを挿入する簡単なWriteメソッドを使用して開始します
- ファイルから既存のDocumentを開きます。 ファイル形式を自動的に検出
- Append文書"A"を文書"B"のandに変換します
- Save出力はPDFとして出力されます
次のコードスニペットは"Hello,World!““Aspose.WordsforJava"APIの動作を示す例"Aspose.WordsforJava"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"); |