java将html转word后下载_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 Tester {

public static boolean writeWordFile() {

boolean w = false;

String path = "E:/";

try {

if (!"".equals(path)) {

// 检查目录是否存在

File fileDir = new File(path);

if (fileDir.exists()) {

// 生成临时文件名称

String fileName = "a.doc";

String content = "" +

"

你好" +

"

" +

"

"

" +

"

信息1" +

"

信息2" +

"

t3" +

"

" +

"

" +

"" +

"";

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();

}

}

所需jar包 poi.jar   http://download.csdn.net/detail/hackxiaof/9257831

你可能感兴趣的:(java将html转word后下载_Java 将html转换word)