Android使用POI解析doc文档为Html

本文档介绍如何在Android中使用Apache POI库将doc文档解析为Html,以便通过WebView展示。开发者分享了将doc转换为Html的简单步骤,并提到此方法仅适用于doc文档,其他格式的支持将在后续更新中探讨。
摘要由CSDN通过智能技术生成

笔者最近在开发一款文档阅读器,需要支持各种不同格式的文档。各种查找资料,也在网上看了各路大神的文章,今天写此文主要是为了留存笔记,同时也可以方便后来者能准确快速找到解决方案。

PS:本片内容只支持doc文档解析,其他文档类型还在摸索当中,后面将会继续更新。

笔者思路很简单:

1. 将doc文档解析成Html代码 

2.通过WebView呈现

首先需要导入POI相关的jar包(红线标注):

然后直接上代码:
package com.demo.x5.utils;

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;

import org.apache.poi.hwpf.HWPFDocument;
import org.apache.poi.hwpf.usermodel.CharacterRun;
import org.apache.poi.hwpf.usermodel.Paragraph;
import org.apache.poi.hwpf.usermodel.Picture;
import org.apache.poi.hwpf.usermodel.Range;
import org.apache.poi.hwpf.usermodel.Table;
import org.apache.poi.hwpf.usermodel.TableCell;
import org.apache.poi.hwpf.usermodel.TableIterator;
import org.apache.poi.hwpf.usermodel.TableRow;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.List;

public class DocUtil {
    private int mPresentPicture = 0;
    private List<Picture> mPictureList;
    private FileOutputStream output;
    private String mPicturePath;
    private int mScreenWidth;

    public DocUtil(int screenWidth) {
        this.mScreenWidth = screenWidth;
    }

    /**
     * 解析入口
     * @param filepath doc文档绝对路径
     * @param outputFilePath  输出html文件绝对路径
     * */
    public void docToHtml(String filepath, String outputFilePath) throws IOException {
        FileInputStream in = new FileInputStream(filepath);
        POIFSFileSystem pfs = new POIFSFileSystem(in);
        HWPFDocument hwpf = new HWPFDocument(pfs);

        Range range = hwpf.getRange();
        mPictureList = hwpf.getPicturesTable().getAllPictures();
        TableIterator tableIterator = new TableIterator(range);

        readAndWrite(range, tableIterator, outputFilePath);
    }

    /*读取word中的内容写到sdcard上的.html文件中*/
    private void readAndWrite(Range range, TableIterator tableIterator, String outfile){

        try{
            File myFile = new File(outfile);
            if (myFile.exists()) {
                myFile.delete();
            }
            myFile.createNewFile();

            output = new FileOutputStream(myFile);
          
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值