openOffice 를 통 해 office 파일 을 pdf 로 변환 합 니 다.
1941 단어 openOfficeofficepdf
cmd 리 턴 입력
명령 창 에 입력
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" Cnofirststartwizard
이 때 서 비 스 는 다음 코드 를 도구 류 에 넣 고 직접 호출 하면 됩 니 다.
import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter;
...
...
public File office2Pdf(String srcPath, String pdfPath) throws Exception {
//
File inputFile = new File(srcPath);
if (!inputFile.exists()) {
throw new Exception(" , ");
}
//
File outputFile = new File(pdfPath);
if (!outputFile.exists()) {
outputFile.createNewFile();
}
// openoffice
String command = openOfficeCommand;
Process process = Runtime.getRuntime().exec(command);
// openoffice
OpenOfficeConnection connection = new SocketOpenOfficeConnection(openOfficeUrl, openOfficePort);
connection.connect();
// word pdf
DocumentConverter converter = new OpenOfficeDocumentConverter(connection);
converter.convert(inputFile, outputFile);
//
connection.disconnect();
//
process.destroy();
return outputFile;
}
...
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PowerPoint에서 앱 아이콘 만들기표제대로 PowerPoint에서 앱 아이콘을 만드는 이야기입니다. PowerPoint는 본래 프리젠테이션용 툴입니다만 도형 묘화계의 툴도 충실하고 있어, 간단한 아이콘등이면 확실히 만들 수 버립니다. 512 x 51...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.