您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何利用Java讀取Word表格中文本和圖片”,在日常操作中,相信很多人在如何利用Java讀取Word表格中文本和圖片問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何利用Java讀取Word表格中文本和圖片”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
1. 程序環境準備
Jar導入步驟及方法:
方法1:手動導入。
方法2:Maven倉庫導入。
2. Java代碼
3. 文本、圖片讀取效果
本文通過Java程序來展示如何讀取Word表格,包括讀取表格中的文本和圖片。下面是具體實現的步驟和方法。
代碼編譯工具:IntelliJ IDEA
Jdk版本:1.8.0
測試文檔:Word .docx 2013
Jar包:free spire.doc.jar 3.9.0
用于測試的Word文檔如下:
打開Project Structure(Shift+Ctrl+Alt+S)界面,選擇【Modules】—【Dependencies】,點擊“+”,【JARs or directories…】,選擇本地路徑中的jar包,添加后,勾選,點擊“OK”或者“Apply”導入jar。
需在pom.xml文件中配置maven路徑并指定free spire.doc.jar 3.9.0的依賴,然后下載導入。具體配置如下:
<repositories> <repository> <id>com.e-iceblue</id> <url>http://repo.e-iceblue.cn/repository/maven-public/</url> </repository> </repositories> <dependencies> <dependency> <groupId> e-iceblue </groupId> <artifactId>free.spire.doc</artifactId> <version>3.9.0</version> </dependency> </dependencies>
import com.spire.doc.*; import com.spire.doc.documents.Paragraph; import com.spire.doc.fields.DocPicture; import com.spire.doc.interfaces.ITable; import javax.imageio.ImageIO; import java.awt.image.RenderedImage; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; import java.util.List; public class GetTable { public static void main(String[] args)throws IOException { //加載Word測試文檔 Document doc = new Document(); doc.loadFromFile("inputfile.docx"); //獲取第一節 Section section = doc.getSections().get(0); //獲取第一個表格 ITable table = section.getTables().get(0); //創建txt文件(用于寫入表格中提取的文本) String output = "ReadTextFromTable.txt"; File textfile = new File(output); if (textfile.exists()) { textfile.delete(); } textfile.createNewFile(); FileWriter fw = new FileWriter(textfile, true); BufferedWriter bw = new BufferedWriter(fw); //創建List List images = new ArrayList(); //遍歷表格中的行 for (int i = 0; i < table.getRows().getCount(); i++) { TableRow row = table.getRows().get(i); //遍歷每行中的單元格 for (int j = 0; j < row.getCells().getCount(); j++) { TableCell cell = row.getCells().get(j); //遍歷單元格中的段落 for (int k = 0; k < cell.getParagraphs().getCount(); k++) { Paragraph paragraph = cell.getParagraphs().get(k); bw.write(paragraph.getText() + "\t");//獲取文本內容 //遍歷段落中的所有子對象 for (int x = 0; x < paragraph.getChildObjects().getCount(); x++) { Object object = paragraph.getChildObjects().get(x); //判定對象是否為圖片 if (object instanceof DocPicture) { //獲取圖片 DocPicture picture = (DocPicture) object; images.add(picture.getImage()); } } } } bw.write("\r\n");//寫入內容到txt文件 } bw.flush(); bw.close(); fw.close(); //將圖片以PNG文件格式保存 for (int z = 0; z < images.size(); z++) { File imagefile = new File(String.format("提取的表格圖片-%d.png", z)); ImageIO.write((RenderedImage) images.get(z), "PNG", imagefile); } } }
完成代碼編輯后,執行程序,讀取表格中的文本數據和圖片。代碼中的文件路徑為IDEA項目文件夾路徑,如:
C:\Users\Administrator\IdeaProjects\Table_Doc\ReadTextFromTable.txt
C:\Users\Administrator\IdeaProjects\Table_Doc\提取的表格圖片-0.png
C:\Users\Administrator\IdeaProjects\Table_Doc\inputfile.docx
在代碼中,文件路徑可自定義為其他路徑。
文本數據讀取結果:
圖片讀取結果:
到此,關于“如何利用Java讀取Word表格中文本和圖片”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。