现在有没有可以浏览WORD文档的JAVA程序
展开全部
public static void main(String[] args){
int i = 0;
File file = new File("F:/test.doc");
try{
FileInputStream fis = new FileInputStream(file);
WordExtractor wordExtractor = new WordExtractor(fis);
System.out.println("【提取的Word文件的内容如下所示:】");
System.out.println("");
String[] paragraph = wordExtractor.getParagraphText();
for(i=0;i<paragraph.length;i++)
{
String getTheParagraph=paragraph[i];
System.out.println("<第 "+(i+1)+"段的内容为:>");
System.out.print(getTheParagraph);
System.out.println("");
}
System.out.println("该Word文件共有"+paragraph.length+"段。");
}catch (FileNotFoundException e){
System.out.println("抱歉!找不到指定的文件!");
}catch (IOException e){
e.printStackTrace();
}catch (ArrayIndexOutOfBoundsException e){
System.out.println("此Word文档共 "+i+"段!");
}
}
这个需要导入其它jar包,是apache的POI,你可以到网上搜一下。
以下是这个类用到的jar包:
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import org.apache.poi.hwpf.extractor.WordExtractor;
int i = 0;
File file = new File("F:/test.doc");
try{
FileInputStream fis = new FileInputStream(file);
WordExtractor wordExtractor = new WordExtractor(fis);
System.out.println("【提取的Word文件的内容如下所示:】");
System.out.println("");
String[] paragraph = wordExtractor.getParagraphText();
for(i=0;i<paragraph.length;i++)
{
String getTheParagraph=paragraph[i];
System.out.println("<第 "+(i+1)+"段的内容为:>");
System.out.print(getTheParagraph);
System.out.println("");
}
System.out.println("该Word文件共有"+paragraph.length+"段。");
}catch (FileNotFoundException e){
System.out.println("抱歉!找不到指定的文件!");
}catch (IOException e){
e.printStackTrace();
}catch (ArrayIndexOutOfBoundsException e){
System.out.println("此Word文档共 "+i+"段!");
}
}
这个需要导入其它jar包,是apache的POI,你可以到网上搜一下。
以下是这个类用到的jar包:
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import org.apache.poi.hwpf.extractor.WordExtractor;
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询