java实现for文件删除_Java 添加、删除、替换、格式化Word中的文本的步骤详解(基于Spire.Cloud.SDK for Java)...

Spire.Cloud.SDK for Java提供了TextRangesApi接口可通过addTextRange()添加文本、deleteTextRange()删除文本、updateTextRangeText()替换文本、updateTextRangeFormat()格式化文本等。本文将从以上方法介绍如何来实现对文本的操作。可参考以下步骤进行准备:

一、导入jar文件

创建Maven项目程序,通过maven仓库下载导入。以IDEA为例,新建Maven项目,在pom.xml文件中配置maven仓库路径,并指定spire.cloud.sdk的依赖,如下:

com.e-iceblue

cloud

http://repo.e-iceblue.cn/repository/maven-public/

cloud

spire.cloud.sdk

3.5.0

com.google.code.gson

gson

2.8.1

com.squareup.okhttp

logging-interceptor

2.7.5

com.squareup.okhttp

okhttp

2.7.5

com.squareup.okio

okio

1.6.0

io.gsonfire

gson-fire

1.8.0

io.swagger

swagger-annotations

1.5.18

org.threeten

threetenbp

1.3.5

完成配置后,点击“Import Changes” 即可导入所有需要的jar文件。如果使用的是Eclipse,可参考这里的导入方法。

导入结果:

45194615afd73aa317e0307631fb0bc3.png

二、登录冰蓝云账号,创建文件夹,上传文档

79f4694d5808be199e6034525db9562b.png

三、创建应用程序,获取App ID及App Key

d73d949eec1271751ccb1aa13d06ee16.png

完成以上步骤后,可参考以下代码,进行文档操作。

用于测试的Word源文档如下:

11b4ee5f9c1288f19b25a97d7c5e77ab.png

1. 添加文本到Word

import spire.cloud.word.sdk.client.ApiException;

import spire.cloud.word.sdk.client.Configuration;

import spire.cloud.word.sdk.client.api.TextRangesApi;

public class AddTextRange {

//配置App账号信息

static String appId = "App ID";

static String appKey = "App Key";

static String baseUrl = "https://api.e-iceblue.cn";

static Configuration wordConfiguration = new Configuration(appId, appKey, baseUrl);

static TextRangesApi textRangesApi = new TextRangesApi(wordConfiguration);

public static void main(String[] args) throws ApiException {

String name = "testfile.docx";//用于测试的Word源文档

String paragraphPath = "Section/0/Body/0/Paragraph/0";//获取文档中的段落

Integer indexInParagraph = 0;

String text = "新添加的文本内容!";//指定需要添加的文本内容

String folder = "input";//源文档所在的云端文件夹

String storage = null;//冰蓝云存储空间

String password = null;//源文档密码

String destFilePath = "output/AddTextRange.docx";//结果文档路径

//调用方法添加文本内容到Word段落

textRangesApi.addTextRange(name, paragraphPath, text, destFilePath, folder, storage, indexInParagraph, password);

}

}

文本添加效果:

52a8645613c22ed1c1e514b2acd7e750.png

2. 删除Word中的文本

import spire.cloud.word.sdk.client.ApiException;

import spire.cloud.word.sdk.client.Configuration;

import spire.cloud.word.sdk.client.api.TextRangesApi;

public class DeleteTextRange {

//配置App账号信息

static String appId = "App ID";

static String appKey = "App Key";

static String baseUrl = "https://api.e-iceblue.cn";

static Configuration wordConfiguration = new Configuration(appId, appKey, baseUrl);

static TextRangesApi textRangesApi = new TextRangesApi(wordConfiguration);

public static void main(String[] args) throws ApiException {

String name = "testfile.docx";//源文档

String paragraphPath = "Section/0/Body/0/Paragraph/0";//获取段落

Integer index = 0;

String folder = "input";//源文档所在文件夹

String storage = null;//冰蓝云存储空间

String password = null;//源文档密码

String destFilePath = "output/DeleteTextRange.docx";//结果文档路径

//调用方法删除Word第一段文本

textRangesApi.deleteTextRange(name, paragraphPath, index, destFilePath,folder, storage, password);

}

}

文本删除效果:

19c2bf9b977268369c3c72f322090e0d.png

3. 替换Word中的文本

import spire.cloud.word.sdk.client.ApiException;

import spire.cloud.word.sdk.client.Configuration;

import spire.cloud.word.sdk.client.api.TextRangesApi;

public class UpdateTextRange {

//配置App账号信息

static String appId = "App ID";

static String appKey = "App Key";

static String baseUrl = "https://api.e-iceblue.cn";

static Configuration wordConfiguration = new Configuration(appId, appKey, baseUrl);

static TextRangesApi textRangesApi = new TextRangesApi(wordConfiguration);

public static void main(String[] args) throws ApiException {

String name = "testfile.docx";//源文档

String paragraphPath = "Section/0/Body/0/Paragraph/0";//获取段落

Integer index = 0;

String text = "新替换文本";//指定新文本

String folder = "input";//源文档所在文件夹

String storage = null;

String password = null;

String destFilePath = "output/UpdateTextRangeText.docx";//结果文档路径

//调用方法更新(替换)原有的文本

textRangesApi.updateTextRangeText(name, paragraphPath, index, text, destFilePath, folder, storage, password);

}

}

文本替换效果:

848a980ebc2e9f2b6c2d02548b17780f.png

4. 格式化Word中的文本

import spire.cloud.word.sdk.client.ApiException;

import spire.cloud.word.sdk.client.Configuration;

import spire.cloud.word.sdk.client.api.TextRangesApi;

import spire.cloud.word.sdk.client.model.Color;

import spire.cloud.word.sdk.client.model.Font;

import spire.cloud.word.sdk.client.model.TextRangeFormat;

public class UpdateTextRangeFormat {

//配置App账号信息

static String appId = "App ID";

static String appKey = "App Key";

static String baseUrl = "https://api.e-iceblue.cn";

static Configuration wordConfiguration = new Configuration(appId, appKey, baseUrl);

static TextRangesApi textRangesApi = new TextRangesApi(wordConfiguration);

public static void main(String[] args) throws ApiException {

String name = "testfile.docx";//源文档

String paragraphPath = "Section/0/Body/0/Paragraph/0";//获取段落

Integer index = 0;

//创建文本样式,指定字体、颜色、字号,并应用到文本

TextRangeFormat format = new TextRangeFormat();

Color color = new Color(34,139,34);

Font font = new Font("宋体", 20f, color);

format.setFont(font);

TextRangeFormat textRange = format;

String folder = "input";//源文档所在文件夹

String storage = null;

String password = null;

String destFilePath = "output/UpdateTextRangeFormat.docx";//结果文档路径

//调用方法更新(应用)文本样式

textRangesApi.updateTextRangeFormat(name, paragraphPath, index, textRange, destFilePath, folder, storage, password);

}

}

文本格式设置效果:

34594b854e108c251a0a81d754c62d61.png

到此这篇关于Java 添加、删除、替换、格式化Word中的文本的步骤详解(基于Spire.Cloud.SDK for Java)的文章就介绍到这了,更多相关Java 添加、删除、替换、格式化Word中的文本内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值