欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android使用模板生成支持手机直接查看的Word文档

程序员文章站 2022-08-20 17:29:39
最近在项目工作中,碰到一个很棘手的需求,说是要在手机端根据模板生成word文档,而且不借助第三方的软件可以查看word文档,一开始听这个需求差不多蒙了,这要怎么做,为什么不...

最近在项目工作中,碰到一个很棘手的需求,说是要在手机端根据模板生成word文档,而且不借助第三方的软件可以查看word文档,一开始听这个需求差不多蒙了,这要怎么做,为什么不把生成word文档这个工作放在后台呢,抱怨归抱怨,但是面对需求只能硬着头皮做了,经过各种拷问度娘和谷哥,终于找了一个比较好用的方法。特此跟他家分享。

apache 公司推出的 apache poi,我们来看下他的介绍:apache poi 是用java编写的免费开源的跨平台的 java api,apache poi提供api给java程式对microsoft office格式档案读和写的功能。

废话少说开始编码,首先我们要下apache poi的开发jar包,,这里推荐不要下最新版本的,因为一开始我用最新版本的会出一下莫名其妙的问题,后面换旧的版本就ok了。这里我用的是3.9的还是比较稳定的、

Android使用模板生成支持手机直接查看的Word文档

开发有2个包,有一点我就非常郁闷apache居然没有提供api稳定,开发起来还是比较蛋疼的,可能是我自己没有找到把,如果有知道的筒子可以@我、嘿嘿。不过apache还是提供了demo大家可以参考。还有我们要准备我们使用的word模板文件、这里我们放在了assets下面了。首先我们来看看怎么使用模板:

package com.test.poiword;
 
import android.app.activity;
import android.content.activitynotfoundexception;
import android.content.intent;
import android.net.uri;
import android.os.bundle;
import android.view.view;
import android.view.view.onclicklistener;
import android.widget.button;
import android.widget.toast;
 
import com.test.poiword.utils.fileutils;
 
import org.apache.poi.hwpf.hwpfdocument;
import org.apache.poi.hwpf.usermodel.range;
 
import java.io.bytearrayoutputstream;
import java.io.file;
import java.io.fileinputstream;
import java.io.fileoutputstream;
import java.io.ioexception;
import java.io.inputstream;
import java.util.hashmap;
import java.util.map;
 
public class mainactivity extends activity {
 // 模板文集地址
 private static final string demopath = "/mnt/sdcard/doc/test.doc";
 // 创建生成的文件地址
 private static final string newpath = "/mnt/sdcard/doc/tests.doc";
 private button btn,btns;
 @override
 protected void oncreate(bundle savedinstancestate) {
 super.oncreate(savedinstancestate);
 setcontentview(r.layout.activity_main);
 btn=(button)findviewbyid(r.id.btn);
 btns=(button)findviewbyid(r.id.btns);
 btn.setonclicklistener(new onclicklistener() {
 
 @override
 public void onclick(view arg0) {
 try {
  inputstream inputstream = getassets().open("test.doc");
  fileutils.writefile(new file(demopath), inputstream);
 } catch (exception e) {
  e.printstacktrace();
 }
 doscan();
 }
 });
 btns.setonclicklistener(new onclicklistener() {
 
 @override
 public void onclick(view arg0) {
 intent intent = new intent(mainactivity.this,wordhtmlactivity.class);
 startactivity(intent);
 }
 });
 
 }
 
 private void doscan(){
 //获取模板文件
 file demofile=new file(demopath);
 //创建生成的文件
 file newfile=new file(newpath);
 map<string, string> map = new hashmap<string, string>();
 map.put("$qymc$", "xxx科技股份有限公司");
 map.put("$qydz$", "上海市杨浦区xx路xx号");
 map.put("$qyfzr$", "张三");
 map.put("$frdb$", "李四");
 map.put("$cjsj$", "2000-11-10");
 map.put("$scpzmsjwt$", "5");
 map.put("$xcjcjbq$", "6");
 map.put("$jljjjff$", "7");
 map.put("$qyfzrqm$", "张三");
 map.put("$cprwqm$", "赵六");
 map.put("$zfzh$", "100001");
 map.put("$bz$", "无");
 writedoc(demofile,newfile,map);
 //查看
 doopenword();
 }
 /**
 * 调用手机中安装的可打开word的软件
 */
 private void doopenword(){
 intent intent = new intent();
 intent.setaction("android.intent.action.view");
 intent.addcategory("android.intent.category.default");
 string filemimetype = "application/msword";
 intent.setdataandtype(uri.fromfile(new file(newpath)), filemimetype);
 try{
 mainactivity.this.startactivity(intent);
 } catch(activitynotfoundexception e) {
 //检测到系统尚未安装oliveoffice的apk程序
 toast.maketext(mainactivity.this, "未找到软件", toast.length_long).show();
 //请先到www.olivephone.com/e.apk下载并安装
 }
 }
 /**
 * demofile 模板文件
 * newfile 生成文件
 * map 要填充的数据
 * */
 public void writedoc(file demofile ,file newfile ,map<string, string> map)
 {
 try
 {
 fileinputstream in = new fileinputstream(demofile);
 hwpfdocument hdt = new hwpfdocument(in);
 // fields fields = hdt.getfields();
 // 读取word文本内容
 range range = hdt.getrange();
 // system.out.println(range.text());
 
 // 替换文本内容
 for(map.entry<string, string> entry : map.entryset())
 {
 range.replacetext(entry.getkey(), entry.getvalue());
 }
 bytearrayoutputstream ostream = new bytearrayoutputstream();
 fileoutputstream out = new fileoutputstream(newfile, true);
 hdt.write(ostream);
 // 输出字节流
 out.write(ostream.tobytearray());
 out.close();
 ostream.close();
 }
 catch(ioexception e)
 {
 e.printstacktrace();
 }
 catch(exception e)
 {
 e.printstacktrace();
 }
 }
 
}

上面代码的代码并不多,首先我们要注意的是我们使用的poi的api大部分是在org.apache.poi.hwpf下面的,大家不要导错包了,因为apache每个包对应的内容不同:

Android使用模板生成支持手机直接查看的Word文档

上面代码不难懂,就是把我们要放的内容使用特定的代号组装一个map塞到我们的模板里面去,然后重新存储下,不过我们模板也要使用相同的代号、poi才能识别:

Android使用模板生成支持手机直接查看的Word文档

这样我们就使用模板大功告成了,就可以查看了、但是有些手机并没有装wps类似的工具,要是手机可以直接查看那就好了,嘿嘿、当然apache肯定也想到了、提供了这样的api下面上代码:

package com.test.poiword;
 
import android.os.bundle;
import android.support.v4.app.fragmentactivity;
import android.webkit.websettings;
import android.webkit.webview;
 
import com.test.poiword.utils.fileutils;
 
import org.apache.poi.hwpf.hwpfdocument;
import org.apache.poi.hwpf.converter.picturesmanager;
import org.apache.poi.hwpf.converter.wordtohtmlconverter;
import org.apache.poi.hwpf.usermodel.picture;
import org.apache.poi.hwpf.usermodel.picturetype;
import org.w3c.dom.document;
 
import java.io.bufferedwriter;
import java.io.bytearrayoutputstream;
import java.io.file;
import java.io.fileinputstream;
import java.io.filenotfoundexception;
import java.io.fileoutputstream;
import java.io.ioexception;
import java.io.outputstreamwriter;
import java.util.list;
 
import javax.xml.parsers.documentbuilderfactory;
import javax.xml.transform.outputkeys;
import javax.xml.transform.transformer;
import javax.xml.transform.transformerfactory;
import javax.xml.transform.dom.domsource;
import javax.xml.transform.stream.streamresult;
 
/**
 * created by fuweiwei on 2015/11/28.
 */
public class wordhtmlactivity extends fragmentactivity {
 //文件存储位置
 private string docpath = "/mnt/sdcard/doc/";
 //文件名称
 private string docname = "test.doc";
 //html文件存储位置
 private string savepath = "/mnt/sdcard/doc/";
 @override
 protected void oncreate(bundle savedinstancestate) {
 super.oncreate(savedinstancestate);
 setcontentview(r.layout.html);
 string name = docname.substring(0, docname.indexof("."));
 try {
 convert2html(docpath + docname, savepath + name + ".html");
 } catch (exception e) {
 e.printstacktrace();
 }
 //webview加载显示本地html文件
 webview webview = (webview)this.findviewbyid(r.id.office);
 websettings websettings = webview.getsettings();
 websettings.setloadwithoverviewmode(true);
 websettings.setsupportzoom(true);
 websettings.setbuiltinzoomcontrols(true);
 webview.loadurl("file:/"+savepath+name+".html");
 }
 
 /**
 * word文档转成html格式
 * */
 public void convert2html(string filename, string outputfile) {
 hwpfdocument worddocument = null;
 try {
 worddocument = new hwpfdocument(new fileinputstream(filename));
 wordtohtmlconverter wordtohtmlconverter = new wordtohtmlconverter(
  documentbuilderfactory.newinstance().newdocumentbuilder().newdocument());
 //设置图片路径
 wordtohtmlconverter.setpicturesmanager(new picturesmanager() {
 public string savepicture(byte[] content,
   picturetype picturetype, string suggestedname,
   float widthinches, float heightinches) {
  string name = docname.substring(0, docname.indexof("."));
  return name + "/" + suggestedname;
 }
 });
 //保存图片
 list<picture> pics=worddocument.getpicturestable().getallpictures();
 if(pics!=null){
 for(int i=0;i<pics.size();i++){
  picture pic = (picture)pics.get(i);
  system.out.println( pic.suggestfullfilename());
  try {
  string name = docname.substring(0,docname.indexof("."));
  string file = savepath+ name + "/"
  + pic.suggestfullfilename();
  fileutils.makedirs(file);
  pic.writeimagecontent(new fileoutputstream(file));
  } catch (filenotfoundexception e) {
  e.printstacktrace();
  }
 }
 }
 wordtohtmlconverter.processdocument(worddocument);
 document htmldocument = wordtohtmlconverter.getdocument();
 bytearrayoutputstream out = new bytearrayoutputstream();
 domsource domsource = new domsource(htmldocument);
 streamresult streamresult = new streamresult(out);
 transformerfactory tf = transformerfactory.newinstance();
 transformer serializer = tf.newtransformer();
 serializer.setoutputproperty(outputkeys.encoding, "utf-8");
 serializer.setoutputproperty(outputkeys.indent, "yes");
 serializer.setoutputproperty(outputkeys.method, "html");
 serializer.transform(domsource, streamresult);
 out.close();
 //保存html文件
 writefile(new string(out.tobytearray()), outputfile);
 } catch (exception e) {
 e.printstacktrace();
 }
 }
 /**
 * 将html文件保存到sd卡
 * */
 public void writefile(string content, string path) {
 fileoutputstream fos = null;
 bufferedwriter bw = null;
 try {
 file file = new file(path);
 if(!file.exists()){
 file.createnewfile();
 }
 fos = new fileoutputstream(file);
 bw = new bufferedwriter(new outputstreamwriter(fos,"utf-8"));
 bw.write(content);
 } catch (filenotfoundexception fnfe) {
 fnfe.printstacktrace();
 } catch (ioexception ioe) {
 ioe.printstacktrace();
 } finally {
 try {
 if (bw != null)
  bw.close();
 if (fos != null)
  fos.close();
 } catch (ioexception ie) {
 }
 }
 }
}

上面的代码的原理起始也很简单,poi提供了让word文档转换成html页面的方法、我们只需要使用webview来加载这个html就ok了,这样我们就可以再手机端直接查看我们的word文档了,是不是好强大。其实看起来的比较复杂的功能只要我们静下心来想想就没有我们想象中的那么复杂,今天就为大家分享到这了。

分享demo的源码:android使用模板生成word文档

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。