資源簡介
利用poi 把office轉化為html,利用jacob把office轉化為pdf、html
代碼片段和文件信息
package?com.rd.office2html;
import?org.apache.poi.xwpf.converter.core.utils.StringUtils;
import?java.io.BufferedWriter;
import?java.io.File;
import?java.io.FileNotFoundException;
import?java.io.FileOutputStream;
import?java.io.IOException;
import?java.io.OutputStream;
import?java.io.OutputStreamWriter;
public?class?FileUtils?{
private?static?final?String?ENCODING?=?“GB2312“;//?UTF-8
public?static?String?GetFileExt(String?path)?{
String?ext?=?null;
int?i?=?path.lastIndexOf(‘.‘);
if?(i?>?0?&&?i? ext?=?path.substring(i?+?1).toLowerCase();
}
return?ext;
}
public?static?void?createHtmlDir(String?path)?{
int?i?=?path.lastIndexOf(‘/‘);
String?dirPath?=?““;
if?(i?>?0?&&?i? dirPath?=?path.substring(0?i).toLowerCase();
}
File?dir?=?new?File(dirPath);
if?(!dir.exists())?{
dir.mkdirs();
}
}
public?static?void?createDir(String?dirPath)?{
File?dir?=?new?File(dirPath);
if?(!dir.exists())?{
dir.mkdirs();
}
}
public?static?void?writeFile(String?content?String?path)?{
createHtmlDir(path);
OutputStream?os?=?null;
BufferedWriter?bw?=?null;
try?{
File?file?=?new?File(path);
if?(!file.exists())?{
file.createNewFile();
}
os?=?new?FileOutputStream(file);
bw?=?new?BufferedWriter(new?OutputStreamWriter(os?ENCODING));
bw.write(content);
}?catch?(FileNotFoundException?fnfe)?{
fnfe.printStackTrace();
}?catch?(IOException?ioe)?{
ioe.printStackTrace();
}?finally?{
try?{
if?(bw?!=?null)
bw.close();
if?(os?!=?null)
os.close();
}?catch?(IOException?ie)?{
ie.printStackTrace();
}
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\
?????文件??????205312??2015-08-05?05:01??java?word轉pdf、html\jacob-1.18-x64.dll
?????文件??????167936??2015-08-05?05:01??java?word轉pdf、html\jacob-1.18-x86.dll
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\
?????文件?????????973??2017-06-14?17:51??java?word轉pdf、html\offcieTohtml\.classpath
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\.idea\
?????文件??????????12??2018-11-15?09:30??java?word轉pdf、html\offcieTohtml\.idea\.name
?????文件?????????709??2018-11-15?09:31??java?word轉pdf、html\offcieTohtml\.idea\compiler.xm
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\.idea\copyright\
?????文件??????????76??2018-11-15?09:30??java?word轉pdf、html\offcieTohtml\.idea\copyright\profiles_settings.xm
?????文件?????????220??2018-11-15?11:45??java?word轉pdf、html\offcieTohtml\.idea\encodings.xm
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\.idea\libraries\
?????文件?????????233??2018-11-15?21:35??java?word轉pdf、html\offcieTohtml\.idea\libraries\jacob.xm
?????文件?????????463??2018-11-15?09:33??java?word轉pdf、html\offcieTohtml\.idea\misc.xm
?????文件?????????264??2018-11-15?09:31??java?word轉pdf、html\offcieTohtml\.idea\modules.xm
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\.idea\scopes\
?????文件?????????143??2018-11-15?09:30??java?word轉pdf、html\offcieTohtml\.idea\scopes\scope_settings.xm
?????文件????????8792??2018-11-16?11:29??java?word轉pdf、html\offcieTohtml\.idea\uiDesigner.xm
?????文件?????????164??2018-11-15?09:30??java?word轉pdf、html\offcieTohtml\.idea\vcs.xm
?????文件???????72570??2018-11-16?11:44??java?word轉pdf、html\offcieTohtml\.idea\workspace.xm
?????文件?????????388??2017-06-14?17:42??java?word轉pdf、html\offcieTohtml\.project
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\.settings\
?????文件?????????598??2017-06-14?17:42??java?word轉pdf、html\offcieTohtml\.settings\org.eclipse.jdt.core.prefs
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\bin\
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\bin\com\
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\bin\com\rd\
?????目錄???????????0??2018-11-16?11:45??java?word轉pdf、html\offcieTohtml\bin\com\rd\office2html\
?????文件????????2616??2018-11-15?21:39??java?word轉pdf、html\offcieTohtml\bin\com\rd\office2html\FileUtils.class
?????文件????????6730??2018-11-16?08:52??java?word轉pdf、html\offcieTohtml\bin\com\rd\office2html\JacobUtil.class
?????文件????????5783??2018-11-16?11:05??java?word轉pdf、html\offcieTohtml\bin\com\rd\office2html\Office2pdf.class
?????文件????????5292??2018-11-16?11:34??java?word轉pdf、html\offcieTohtml\bin\com\rd\office2html\OfficeToHtml.class
............此處省略35個文件信息
- 上一篇:JavaFX的.jar包
- 下一篇:android開發AIDL使用模擬支付寶支付
評論
共有 條評論