获取 java.lang.RuntimeException:上传文档时无法完成 HTTP 请求

发布于 2024-10-23 00:19:45 字数 669 浏览 3 评论 0原文

当我尝试使用 com.google.gdata.client.docs.DocsService 上传文档时出现超时错误,

这是我正在使用的代码:

DocumentListEntry documentEntry = new DocumentEntry();

documentEntry.setTitle(new PlainTextConstruct("new document"));

documentEntry.setMediaSource(new MediaByteArraySource(out.toByteArray(), mimeType));

DocumentListEntry uploadedEntry = service.insert(new URL("https://docs.google.com/feeds/default/private/full/"), documentEntry);   <-- timeout at this point.

获取时超时: https://docs.google.com/feeds/default/private/full/

我正在使用应用程序引擎 sdk 在调试模式下运行应用程序蚀。

I am getting timeout error while I am trying to upload document using com.google.gdata.client.docs.DocsService

here is the code I am using:

DocumentListEntry documentEntry = new DocumentEntry();

documentEntry.setTitle(new PlainTextConstruct("new document"));

documentEntry.setMediaSource(new MediaByteArraySource(out.toByteArray(), mimeType));

DocumentListEntry uploadedEntry = service.insert(new URL("https://docs.google.com/feeds/default/private/full/"), documentEntry);   <-- timeout at this point.

Timeout while fetching: https://docs.google.com/feeds/default/private/full/

I am running application in debug mode using app engine sdk in eclipse.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

棒棒糖 2024-10-30 00:19:45

我认为这是一个很老的帖子,但只是在回答另一个问题时看到的。我希望你现在已经解决了。

如果没有,那么您的服务是否已通过身份验证,您是否能够创建一个简单的文档,例如

             String title = "Doc Create Test";
             DocumentListEntry newEntry = new DocumentEntry();
             newEntry.setTitle(new PlainTextConstruct(title));
             newEntry = service.insert(feedUrl, newEntry);

I think it is a very old thread, but just saw it while replying another question. I hope you have resolved it by now.

If not, then is your service authenticated and are you able to create a simple document e.g.

             String title = "Doc Create Test";
             DocumentListEntry newEntry = new DocumentEntry();
             newEntry.setTitle(new PlainTextConstruct(title));
             newEntry = service.insert(feedUrl, newEntry);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文