Java PowerPointをHTML形式に変換
Spire.Presentation for Javaが、強いライブラリだって皆さんもうご存知でしょう?Spire.Presentation for Javaは、いろいろな機能を搭載しています。とりわけ、その変換機能は素晴らしいし、PowerPointを様々なファイル形式に変換できますので、とても便利なライブラリですね。だから今日PowerPointをHTML形式に変換する方法を紹介させていただきます。
1.E-iceblueの公式サイトからSpire. Presentation for Javaをダウンロードしてください。
2. IDEを起動して新規プロジェクトを作成してから、インストールされたファイルにあった相応しいSpire. Presentation.jarを参照に追加してください。
import com.spire.presentation.FileFormat;
import com.spire.presentation.Presentation;
public class ToHtml {
public static void main(String[] args) throws Exception {
// Presentation オブジェクトを作成します。
Presentation presentation = new Presentation();
//サンプルファイルをロードします。
presentation.loadFromFile("C:\\Users\\Administrator\\Desktop\\sample.pptx");
//HTMLで保存します。
presentation.saveToFile("C:\\Users\\Administrator\\Desktop\\ToHtml.html", FileFormat.HTML);
}
}
実行結果
Author And Source
この問題について(Java PowerPointをHTML形式に変換), 我々は、より多くの情報をここで見つけました https://qiita.com/iceblue/items/fd9a6f31fd561e0a8ec6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .