gpt4 book ai didi

java - 使用 Java GWT 复制 Google Docs 文档

转载 作者:行者123 更新时间:2023-11-29 09:23:14 25 4
gpt4 key购买 nike

根据 Google 文档列表数据 API,有一个复制文档的选项: http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#CopyingDocs

但是当我查看 API 的 GWT Java 文档时,这个菜单点丢失了。 http://code.google.com/apis/documents/docs/3.0/developers_guide_java.html

您知道吗,Java GWT API 中是否有复制 GDocs 文档的方法?哪些可能只是没有记录?

在 python API 中我找到了 python 方法: http://code.google.com/apis/documents/docs/3.0/developers_guide_python.html#CopyingDocs

最佳答案

我现在设法编写了自己的复制请求:

t7Z3GLNuO641hOO737UH60Q替换为文档 key ,你喜欢复制

String = "new File";
String userEmail= new CurrentUser ().getUser ().getEmail ();

String body = "<?xml version='1.0' encoding='UTF-8'?>"
+ "<entry xmlns=\"http://www.w3.org/2005/Atom\">"
+ "<id>t7Z3GLNuO641hOO737UH60Q</id>"
+ "<title>"+ title +"</title>"
+ "</entry>";

try {
GDataRequest gdr = docsService.createRequest(Service.GDataRequest.RequestType.INSERT,
new URL("https://docs.google.com/feeds/default/private/full/?xoauth_requestor_id="+ userEmail),
ContentType.ATOM);

gdr.setHeader("GData-Version", "3.0");
OutputStream requestStream = gdr.getRequestStream();
requestStream.write(body.getBytes());

log.info(gdr.toString());
gdr.execute();
}
[.. catch]

关于java - 使用 Java GWT 复制 Google Docs 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4760674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com