用Java替换Google文档中的文本

时间:2014-05-15 06:37:46

标签: java google-drive-api google-docs google-docs-api

我在Google云端硬盘中有一个文档(原生Google文档),我需要从我的Java应用程序更新。到目前为止我所做的是将文档下载为html

String downloadUrl = doc.getExportLinks().get("text/html");
HttpResponse resp = service.getRequestFactory()
                           .buildGetRequest(new GenericUrl(downloadUrl))
                           .execute();
String contents = IOUtils.toString(resp.getContent());

然后我更新String对象中的内容并将更新发送到云端硬盘:

ByteArrayContent mediaContent = ByteArrayContent.fromString("text/html", contents);
service.files().update(doc.getId(), doc, mediaContent).execute();

这适用于非常简单的文档。但如果文档包含图像,它就会消失。 src标记的img属性为空。

Google是否提供了更新Google文档内容的其他方法?是否有与Google Spreadsheet API类似的API?

1 个答案:

答案 0 :(得分:1)

不幸的是,Google没有提供细粒度的REST API来操纵Google Docs文档的内容。 Google Apps Script提供了执行此操作的服务,但可能难以将其集成到Java应用程序中。