使用Java将HTML转成Word格式文件

import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

import org.apache.poi.poifs.filesystem.DirectoryEntry;
import org.apache.poi.poifs.filesystem.DocumentEntry;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;

 

public class HtmlToWord {

 public static boolean writeWordFile() {

  boolean w = false;
  String path = "c:/";
  
  try {
   if (!"".equals(path)) {
    
    // 检查目录是否存在
    File fileDir = new File(path);
    if (fileDir.exists()) {
     
     // 生成临时文件名称
     String fileName = "a.doc";
     String content = "" +
           "你好" +
          "" +
            "

" +
             "" +
              "" +              
              "" +              
              "" +              
             "" +
            "
信息1信息2t3
" +
            "" +
            "";
     
     byte b[] = content.getBytes();
     ByteArrayInputStream bais = new ByteArrayInputStream(b);
     POIFSFileSystem poifs = new POIFSFileSystem();
     DirectoryEntry directory = poifs.getRoot();
     DocumentEntry documentEntry = directory.createDocument("WordDocument", bais);
     FileOutputStream ostream = new FileOutputStream(path+ fileName);
     poifs.writeFilesystem(ostream);
     bais.close();
     ostream.close();
     
    }
   }

  } catch (IOException e) {
   e.printStackTrace();
  }

  return w;
 }
 
 public static void main(String[] args){
  writeWordFile();
 }
 
}

你可能感兴趣的:(J2SE)