您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)Java獲取Word批注的文字和圖片的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
工具使用:Word類庫(Free Spire.Doc for Java 免費版)
Jar文件獲?。嚎赏ㄟ^官網(wǎng)下載,下載后解壓文件,并將lib文件夾下的Spire.Doc.jar文件導(dǎo)入java程序。
測試文檔如下:批注中包含文本和圖片
【示例1】讀取批注中的文本
import com.spire.doc.*; import com.spire.doc.documents.Paragraph; import com.spire.doc.fields.Comment; import com.spire.doc.fields.TextRange; public class ReadComment { public static void main(String[] args) { //加載測試文檔 Document doc = new Document(); doc.loadFromFile("sample.docx"); //實例化String類型變量 String text = ""; //遍歷所有批注 for(int i = 0;i< doc.getComments().getCount();i++){ Comment comment = doc.getComments().get(i); //遍歷所有批注中的段落 for(int j= 0;j < comment.getBody().getParagraphs().getCount();j++) { Paragraph paragraph = comment.getBody().getParagraphs().get(j); //遍歷段落中的對象 for (Object object : paragraph.getChildObjects()) { //讀取文本 if (object instanceof TextRange) { TextRange textRange = (TextRange) object; text = text + textRange.getText(); } } } } //輸入文本內(nèi)容 System.out.println(text); } }
批注文本讀取結(jié)果:
【示例2】讀取批注中的圖片
import com.spire.doc.*; import com.spire.doc.documents.Paragraph; import com.spire.doc.fields.Comment; import com.spire.doc.fields.DocPicture; import javax.imageio.ImageIO; import java.awt.image.RenderedImage; import java.io.File; import java.io.IOException; import java.util.ArrayList; public class ExtractImgsInComment { public static void main(String[] args) throws IOException{ //加載測試文檔 Document doc = new Document(); doc.loadFromFile("sample.docx"); //創(chuàng)建ArrayList數(shù)組對象 ArrayList images = new ArrayList(); //遍歷所有批注 for(int i = 0;i< doc.getComments().getCount();i++){ Comment comment = doc.getComments().get(i); //遍歷所有批注中的段落 for(int j= 0;j < comment.getBody().getParagraphs().getCount();j++) { Paragraph paragraph = comment.getBody().getParagraphs().get(j); //遍歷段落中的對象 for (Object object : paragraph.getChildObjects()) { //獲取圖片對象 if(object instanceof DocPicture){ DocPicture picture = (DocPicture) object; images.add(picture.getImage()); } } } } //提取圖片,并指定圖片格式 for (int z = 0; z< images.size(); z++) { File file = new File(String.format("圖片-%d.png", z)); ImageIO.write((RenderedImage) images.get(z), "PNG", file); } } }
批注圖片讀取結(jié)果:
關(guān)于Java獲取Word批注的文字和圖片的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。