文章 を HTML に変換するシームレスなソリューションを求める Java 開発者向けに、 Aspose.Words for Java 直感的で簡単なファイル変換 API を提供します。私たちのソリューションを使用すると、Java 開発者はファイルをある形式から別の形式に簡単に変換できるため、ファイル変換タスクを自動化するために不可欠なツールになります。
文章、HTML、またはその他のファイル形式を使用しているかどうかに関係なく、 Aspose.Words for Java はそれらをすべてカバーし、最高品質の結果を保証します。 Java コードが 文章 ファイルでどのように動作するかを今すぐテストしてください。
次の例は、わずか数行の Java コードを使用して 文章 を HTML に変換する方法を示しています。まず、 Aspose.Words名前空間を Java プロジェクトに含めます。次に、入力ファイルへのパスを指定し、文章 コンテンツをロードするためのDocumentオブジェクトを作成します。次に、HTML 出力ファイルへのパスを指定し、save() メソッドを使用して結果を HTML として保存する必要があります。変換 API は、指定されたファイル拡張子に基づいて出力ファイル形式を決定します。
// Repository path: https://releases.aspose.com/java/repo/
// Maven, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>ver</version>
<classifier>jdk17</classifier>
</dependency>
コピー
// Repository path: https://releases.aspose.com/java/repo/
// Gradle, where 'ver' - Aspose.Words version number, for example, 24.4.
compile(group: 'com.aspose', name: 'aspose-words', version: 'ver', classifier: 'jdk17')
コピー
// Repository path: https://releases.aspose.com/java/repo/
// Ivy, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency org="com.aspose" name="aspose-words" rev="ver">
<artifact name="aspose-words" m:classifier="jdk17" ext="jar"/>
</dependency>
コピー
// Repository path: https://releases.aspose.com/java/repo/
// Sbt, where 'ver' - Aspose.Words version number, for example, 24.4.
libraryDependencies += "com.aspose" % "aspose-words" % "ver"
コピー
import com.aspose.words.*;
Document doc = new Document("Input.txt");
doc.save("Output.html");
import com.aspose.words.*;
Document doc = new Document("Input.txt");
doc.save("Output.html");
import com.aspose.words.*;
Document doc = new Document("Input.txt");
for (int page = 0; page < doc.getPageCount(); page++)
{
Document extractedPage = doc.extractPages(page, 1);
extractedPage.save(String.format("Output_%d.html", page + 1));
}
import com.aspose.words.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertImage("Input.txt");
doc.save("Output.html");
import com.aspose.words.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.insertImage("Input.txt");
shape.getShapeRenderer().save("Output.html", new ImageSaveOptions(SaveFormat.html));
Java パッケージはMavenリポジトリでホストします。 'Aspose.Words for Java' は、バイトコードを含む一般的な JAR Java開発者環境にインストールする方法のステップバイステップの説明に従ってください。
Java SE 7 Java バージョンがサポートされています。 JRE を使用する必要がある場合に備えて Java SE 6 用の個別のパッケージも提供しています。
私たちの Java Microsoft Windows 、Linux、macOS、Android、iOS JVM 実装されているすべてのオペレーティングシステムで実行されます。
JogAmp JOGL 、 Harfbuzz フォントエンジン、 Java Advanced Imaging JAI などのオプションのパッケージ依存関係については、製品ドキュメントを参照してください。
文章は他の多くのファイル形式に変換できます。