本教程介绍如何使用 Java REST API 删除 DOC 中的脚注。您将学习在多个平台上使用 Cloud SDK 自动 使用 Java 低代码 API 删除 Word 中的脚注。它将引导您在线执行操作并获取更新的Word文件以保存在磁盘上。
先决条件
下载 Aspose.Words Cloud SDK for Java for deleting a footnote
使用上述 SDK 设置 Java 项目以删除所需的脚注
使用 Java API 删除 Word 中脚注的步骤
- 通过设置客户端 ID 和密钥来创建配置对象
- 实例化 WordsApi 对象以删除脚注
- 将带有脚注的输入Word文件读入字节数组
- 通过设置输入文档流和目标脚注索引创建DeleteFootnoteOnlineRequest()
- 调用 DeleteFootnoteOnline() 方法删除请求的脚注
- 从 API 响应中获取输出流并将其保存为磁盘上的 Word 文档
上述步骤总结了如何使用 Java REST 接口删除 Word 中的脚注。通过向 Configuration 类对象传递客户端 ID 和密钥来创建 WordsApi 对象。使用DeleteFootnoteOnlineRequest 类创建脚注的请求对象,并调用DeleteFootnoteOnline() 方法以使用此请求对象删除脚注。
使用 Java Low Code API 删除脚注的代码
import com.aspose.words.cloud.sdk.ApiClient; | |
import com.aspose.words.cloud.sdk.ApiException; | |
import com.aspose.words.cloud.sdk.Configuration; | |
import com.aspose.words.cloud.sdk.model.requests.DeleteFootnoteOnlineRequest; | |
import com.aspose.words.cloud.sdk.api.WordsApi; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
public class WorkWithFootnotes { | |
public static void removeAFootnote() { | |
try { | |
// Initialize the API client | |
Configuration configuration = new Configuration(); | |
configuration.setClientId("id"); | |
configuration.setClientSecret("secret"); | |
WordsApi wordsApi = new WordsApi(configuration); | |
// Open the input document with footnotes | |
File inputDocument = new File("Footnote.docx"); | |
FileInputStream requestDocument = new FileInputStream(inputDocument); | |
// Delete the footnote (Index 0 in this case) | |
DeleteFootnoteOnlineRequest deleteRequest = new DeleteFootnoteOnlineRequest(requestDocument, 0); | |
wordsApi.deleteFootnoteOnline(deleteRequest); | |
// Save the output file | |
File outputFile = new File("output.docx"); | |
try (FileOutputStream outputStream = new FileOutputStream(outputFile)) { | |
outputStream.write(requestDocument.readAllBytes()); | |
} | |
System.out.println("Footnote deleted successfully."); | |
} catch (ApiException | IOException e) { | |
e.printStackTrace(); | |
} | |
} | |
public static void main(String[] args) { | |
removeAFootnote(); | |
} | |
} |
此示例代码演示了如何使用 Java RESTful 服务删除 Word 中的脚注。如果输入文件受密码保护,您可以定义加载源 Word 文件的编码并提供密码。您还可以在实例化请求对象时设置Word文档中的Node路径。
您还可以在以下页面上查看另一个类似的功能:使用 Java REST API 将 Word DOC 转换为 Markdown。