자바 jacob 를 사용 하여 오 피 스 를 pdf 로 변환 합 니 다.
1. 본 기 계 는 office 또는 openoffice 를 설치 해 야 합 니 다. (테스트 되 지 않 음)
2. 최신 jacob 의 jar 를 다운로드 하고 압축 을 푼 후 관련 dll 파일 을 자바/jre/bin 디 렉 터 리 에 복사 합 니 다.
3. 가방 이 다음 과 같은 오류 가 발생 하면:
no jacob-1.18-x64 in java.library.path dll 파일 을 찾 을 수 없 기 때 문 일 수 있 습 니 다. dll 파일 을 사용 하 는 jdk/jre/bin 디 렉 터 리 에 복사 합 니 다.
코드 변환 (코드 는 인터넷 에서 유래 되 었 고 시간 적 인 이유 로 원본 은 잠시 검증 할 수 없습니다):
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.Dispatch;
/**
*
* @ClassName: OfficeToPDF
* @Description: jacob office pdf, txt pdf.
* @author ***************
* @date 2015 9 21 11:15:44
*
*/
public class OfficeToPDF {
private static final int wdFormatPDF = 17;
private static final int xlTypePDF = 0;
private static final int ppSaveAsPDF = 32;
private static final int msoTrue = -1;
private static final int msofalse = 0;
public static void main(String[] args) {
convert2PDF("D:\\aaaa.ppt","D:\\bbbbb.pdf");
}
public static boolean convert2PDF(String inputFile, String pdfFile) {
String suffix = getFileSufix(inputFile);
File file = new File(inputFile);
if(!file.exists()){
System.out.println(" !");
return false;
}
if(suffix.equals("pdf")){
System.out.println("PDF not need to convert!");
return false;
}
if(suffix.equals("doc")||suffix.equals("docx")||suffix.equals("txt")){
return word2PDF(inputFile,pdfFile);
}else if(suffix.equals("ppt")||suffix.equals("pptx")){
return ppt2PDF(inputFile,pdfFile);
}else if(suffix.equals("xls")||suffix.equals("xlsx")){
return excel2PDF(inputFile,pdfFile);
}else{
System.out.println(" !");
return false;
}
}
public static String getFileSufix(String fileName){
int splitIndex = fileName.lastIndexOf(".");
return fileName.substring(splitIndex + 1);
}
/**
*
* @Title: word2PDF
* @Description: word pdf
* @param @param inputFile
* @param @param pdfFile
* @param @return
* @return boolean
* @throws
*/
public static boolean word2PDF(String inputFile,String pdfFile){
try{
// word
ActiveXComponent app = new ActiveXComponent("Word.Application");
// word
app.setProperty("Visible", false);
// word , Documents
Dispatch docs = app.getProperty("Documents").toDispatch();
// Documents Open , Document
Dispatch doc = Dispatch.call(docs,
"Open",
inputFile,
false,
true
).toDispatch();
// Document SaveAs , pdf
/*
Dispatch.call(doc,
"SaveAs",
pdfFile,
wdFormatPDF //word pdf , 17
);
*/
Dispatch.call(doc,
"ExportAsFixedFormat",
pdfFile,
wdFormatPDF //word pdf , 17
);
//
Dispatch.call(doc, "Close",false);
// word
app.invoke("Quit", 0);
return true;
}catch(Exception e){
return false;
}
}
/**
*
* @Title: excel2PDF
* @Description: excel PDF
* @param @param inputFile
* @param @param pdfFile
* @param @return
* @return boolean
* @throws
*/
public static boolean excel2PDF(String inputFile,String pdfFile){
try{
ActiveXComponent app = new ActiveXComponent("Excel.Application");
app.setProperty("Visible", false);
Dispatch excels = app.getProperty("Workbooks").toDispatch();
Dispatch excel = Dispatch.call(excels,
"Open",
inputFile,
false,
true
).toDispatch();
Dispatch.call(excel,
"ExportAsFixedFormat",
xlTypePDF,
pdfFile
);
Dispatch.call(excel, "Close",false);
app.invoke("Quit");
return true;
}catch(Exception e){
return false;
}
}
/**
*
* @Title: ppt2PDF
* @Description: ppt office
* @param @param inputFile
* @param @param pdfFile
* @param @return
* @return boolean
* @throws
*/
public static boolean ppt2PDF(String inputFile,String pdfFile){
try{
ActiveXComponent app = new ActiveXComponent("PowerPoint.Application");
//app.setProperty("Visible", msofalse);
Dispatch ppts = app.getProperty("Presentations").toDispatch();
Dispatch ppt = Dispatch.call(ppts,
"Open",
inputFile,
true,//ReadOnly
true,//Untitled
false//WithWindow
).toDispatch();
Dispatch.call(ppt,
"SaveAs",
pdfFile,
ppSaveAsPDF
);
Dispatch.call(ppt, "Close");
app.invoke("Quit");
return true;
}catch(Exception e){
return false;
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
제이콥, 엑셀.제이콥, 엑셀. JacobExcelUtil ExcelCell...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.