IDEA中怎么设置项目更改后的分析延迟时间,IDEA是java编程语言的集成开发环境,使用该软件编写代码时,可以设置项目更改后的分析延迟时间,这样就可确保项目范围分析的正确性,具体的操作步骤如下。......
2023-07-04 626 JAVA
Spire.Cloud.SDK for Java提供了接口PdfConvertApi通过convert()方法将PDF文档以及XPS文档转为指定文档格式,如转PDF为Word(支持Docx、Doc)、Html、XPS、SVG、PS、PCL、PNG,将XPS转为Word(支持Docx、Doc)、Html、PDF、SVG、PS、PCL、PNG等。此经验内容将通过Java示例介绍具体实现方法。
一、导入jar文件。(有2种方式)
(推荐)方式1. 创建Maven项目程序,通过maven仓库下载导入。以IDEA为例,新建Maven项目,在pom.xml文件中配置maven仓库路径,并指定spire.cloud.sdk的依赖,如下:
repositories>
repository>
id>com.e-iceblue/id>
name>cloud/name>
url>http://repo.e-iceblue.cn/repository/maven-public//url>
/repository>
/repositories>
dependencies>
dependency>
groupId> cloud /groupId>
artifactId>spire.cloud.sdk/artifactId>
version>3.5.0/version>
/dependency>
dependency>
groupId> com.google.code.gson/groupId>
artifactId>gson/artifactId>
version>2.8.1/version>
/dependency>
dependency>
groupId> com.squareup.okhttp/groupId>
artifactId>logging-interceptor/artifactId>
version>2.7.5/version>
/dependency>
dependency>
groupId> com.squareup.okhttp /groupId>
artifactId>okhttp/artifactId>
version>2.7.5/version>
/dependency>
dependency>
groupId> com.squareup.okio /groupId>
artifactId>okio/artifactId>
version>1.6.0/version>
/dependency>
dependency>
groupId> io.gsonfire/groupId>
artifactId>gson-fire/artifactId>
version>1.8.0/version>
/dependency>
dependency>
groupId>io.swagger/groupId>
artifactId>swagger-annotations/artifactId>
version>1.5.18/version>
/dependency>
dependency>
groupId> org.threeten /groupId>
artifactId>threetenbp/artifactId>
version>1.3.5/version>
/dependency>
/dependencies>
完成配置后,点击“Import Changes” 即可导入所有需要的jar文件。
如果使用的是Eclipse,可参考"E-iceblue官网在线编辑-帮助文档-WebAPI-Java-通过 Maven 仓库安装 Spire.Cloud Web API "的导入方法。
方式2:手动下载jar包,然后解压文件,手动导入jar,同时还需另行手动导入其他几个jar文件(相对比较麻烦一点)。
最终导入结果如下:
二、登录冰蓝云账号,创建文件夹,上传文档。
三、创建应用程序,获取App ID及App Key。
import spire.cloud.pdf.sdk.*;
import spire.cloud.pdf.sdk.api.PdfConvertApi;
public class PDFtoWord {
static String appId = "App ID";
static String appKey = "App Key";
static String baseUrl= "https://api.e-iceblue.cn";
static Configuration configuration = new Configuration(appId, appKey, baseUrl);
static PdfConvertApi pdfConvertApi=new PdfConvertApi(configuration);
public static void main(String[] args) throws ApiException{
String name = "sample.pdf";//PDF源文档
//PDF转Word(支持Docx/Doc)
String destFilePath = "output/PDFtoWord.docx";
String format = "Docx";
/*//PDF转Html
String destFilePath = "output/PDFtoHtml.html";
String format = "Html";*/
/*//PDF转PCL
String destFilePath = "output/PDFtoPCL.pcl";
String format = "Pcl";*/
/*//PDF转SVG
String destFilePath = "output/PDFtoSVG.svg";
String format = "Svg";*/
/*//PDF转PS
String destFilePath = "output/PDFtoPS.ps";
String format = "Ps";*/
/*//PDF转XPS
String destFilePath = "output/PDFtoXPS.xps";
String format = "Xps";*/
/*//PDF转PNG
String destFilePath = "output/PDFtoPng.png";
String format = "Png";*/
String folder ="input";//源文档所在文件夹
String storage = null;//冰蓝云配置的2G免费存储空间,可设置为null
String password = null;//源文档密码(无密码可设置为null)
//调用方法将PDF转为指定文档格式
pdfConvertApi.convert(name,destFilePath,format,folder,storage,password);
}
}
import spire.cloud.pdf.sdk.ApiException;
import spire.cloud.pdf.sdk.Configuration;
import spire.cloud.pdf.sdk.api.PdfConvertApi;
public class XPStoWord {
static String appId = "App ID";
static String appKey = "App Key";
static String baseUrl= "https://api.e-iceblue.cn";
static Configuration configuration = new Configuration(appId, appKey, baseUrl);
static PdfConvertApi pdfConvertApi = new PdfConvertApi(configuration);
public static void main(String[] args) throws ApiException {
String name = "test.xps";//XPS源文档
//XPS转Word(支持Docx、Doc)
String destFilepath = "output/XPStoDocx.docx";//结果文档路径
String format = "Docx";
/*//XPS转Html
String destFilepath = "output/XPStoHtml.html";//结果文档路径
String format = "Html"; */
/*//XPS转SVG
String destFilepath = "output/XPStoSVG.svg";//结果文档路径
String format = "Svg"; */
/*//XPS转PCL
String destFilepath = "output/XPStoPCL.pcl";//结果文档路径
String format = "Pcl"; */
/*//XPS转PS
String destFilepath = "output/XPStoPS.ps";//结果文档路径
String format = "Ps";*/
/*//XPS转PNG
String destFilepath = "output/XPStoPNG.png";//结果文档路径
String format = "Png";*/
/*//XPS转PDF
String destFilepath = "output/XPStoPDF.pdf";//结果文档路径
String format = "Pdf";*/
String folder = "input";//源文档所在文件夹
String storage = null;
String password = null;
//调用方法转换XPS文件为指定文档格式
pdfConvertApi.convert(name, destFilepath, format, folder, storage, password);
}
}
文档转换结果如下,注意转为SVG格式时,将源文档的每一页作为一个单独的svg文件保存,当源文档为多页时,在转换结果时会默认生成一个文件夹放置svg文件:
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
相关文章
IDEA中怎么设置项目更改后的分析延迟时间,IDEA是java编程语言的集成开发环境,使用该软件编写代码时,可以设置项目更改后的分析延迟时间,这样就可确保项目范围分析的正确性,具体的操作步骤如下。......
2023-07-04 626 JAVA
IDEA中怎么设置调试器最近表达式的最大数量,IDEA是java编程语言的集成开发环境,使用该软件编写代码时,可以设置调试器最近表达式的最大数量,从而有效避免调试器中表达式存储过多。......
2023-07-04 442 JAVA