チームメンバーと一緒に PowerPoint ドキュメントを作成する場合、コメントを追加することは、ドキュメントの内容についてフィードバックを提供したり、意見を交換したりするための最も効果的な方法です。また、既存のコメントの変更または削除が必要な場合もあります。この記事では、Spire.Presentation for Java を使用して PowerPoint でコメントを追加、変更、または削除する方法を紹介します。
Spire.Presentation for Java をインストールします
まず、Spire.Presentation for Java を Java プロジェクトに追加する必要があります。JAR ファイルは、このリンクからダウンロードできます。Maven を使用する場合は、次のコードをプロジェクトの pom.xml ファイルに追加する必要があります。
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url> https://repo.e-iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.presentation</artifactId>
<version>7.12.4</version>
</dependency>
</dependencies>
Java で PowerPoint のコメントを追加する
Spire.Presentation for Java が提供する ISlide.addComment() メソッドでは、指定したスライドにコメントを追加できます。詳細な手順は次のとおりです。
- Presentation クラスのインスタンスを初期化します。
- Presentation.loadFromFile() メソッドを使用して PowerPoint ドキュメントをロードします。
- Presentation.getCommentAuthors().addAuthor() メソッドを使用してコメントの作成者を追加します。
- Presentation.getSlides().get() メソッドを使用して指定されたスライドを取得し、ISlide.addComment(ICommentAuthor author, java.lang.String text, java.awt.geom.Point2D position, java.util.Date dateTime) メソッドを使用してスライドにコメントを追加します。
- Presentation.saveToFile() メソッドを使用して結果ドキュメントを保存します。
- Java
import com.spire.presentation.*;
import java.awt.geom.Point2D;
public class AddComment {
public static void main(String[] args) throws Exception{
//Presentationクラスのインスタンスを初期化する
Presentation ppt = new Presentation();
//PowerPointドキュメントをロードする
ppt.loadFromFile("Sample.pptx");
//コメントの作成者を追加する
ICommentAuthor author = ppt.getCommentAuthors().addAuthor("E-iceblue", "コメント:");
//指定されたスライドへにコメントを追加する
ppt.getSlides().get(0).addComment(author, "最初のコメント", new Point2D.Float(350, 140), new java.util.Date());
//結果ドキュメントを保存する
ppt.saveToFile("AddComment.pptx", FileFormat.PPTX_2013);
ppt.dispose();
}
}
Java で PowerPoint のコメントを変更する
Spire.Presentation for Java が提供する ISlide.getComments().setText() メソッドでは、スライドのコメントを変更できます。詳細な手順は次のとおりです。
- Presentation クラスのインスタンスを初期化します。
- Presentation.loadFromFile() メソッドを使用して PowerPoint ドキュメントをロードします。
- Presentation.getSlides().get() メソッドを使用して、指定されたスライドを取得します。
- ISlide.getComments().setText() メソッドを使用して、スライド内の指定されたコメント置き換えます。
- Presentation.saveToFile() メソッドを使用して結果ドキュメントを保存します。
- Java
import com.spire.presentation.*;
public class ReplaceComment {
public static void main(String[] args) throws Exception{
//Presentationクラスのインスタンスを初期化する
Presentation ppt = new Presentation();
//PowerPointドキュメントをロードする
ppt.loadFromFile("AddComment.pptx");
//最初のスライドを取得する
ISlide slide = ppt.getSlides().get(0);
//スライドの指定されたコメント置き換えます
slide.getComments()[0].setText("Spire.Presentation for Javaの概要");
//結果ドキュメントを保存する
ppt.saveToFile("ReplaceComment.pptx", FileFormat.PPTX_2013);
ppt.dispose();
}
}
Java で PowerPoint のコメントを削除する
Spire.Presentation for Java が提供する ISlide.deleteComment() メソッドでは、スライドのコメントを削除できます。詳細な手順は次のとおりです。
- Presentation クラスのインスタンスを初期化します。
- Presentation.loadFromFile() メソッドを使用して PowerPoint ドキュメントをロードします。
- Presentation.getSlides().get() メソッドを使用して、指定されたスライドを取得します。
- ISlide.deleteComment(Comment comment) メソッドを使用して、指定したコメントをスライドから削除します。
- Presentation.saveToFile() メソッドを使用して結果ドキュメントを保存します。
- Java
import com.spire.presentation.*;
public class DeleteComment {
public static void main(String[] args) throws Exception{
//Presentationクラスのインスタンスを初期化する
Presentation ppt = new Presentation();
//PowerPointドキュメントをロードする
ppt.loadFromFile("AddComment.pptx");
//最初のスライドを取得する
ISlide slide = ppt.getSlides().get(0);
//指定したコメントをスライドから削除する
slide.deleteComment(slide.getComments()[0]);
//結果ドキュメントを保存する
ppt.saveToFile("DeleteComment.pptx", FileFormat.PPTX_2013);
ppt.dispose();
}
}
一時ライセンスを申請する
結果ドキュメントから評価メッセージを削除したい場合、または機能制限を取り除く場合は、についてこのメールアドレスはスパムボットから保護されています。閲覧するにはJavaScriptを有効にする必要があります。にお問い合わせ、30 日間有効な一時ライセンスを取得してください。