谷歌 API Java OCR

发布于 2024-10-19 13:21:30 字数 324 浏览 1 评论 0原文

我想知道是否可以使用 Java 中的 google-docs api 上传和 OCR 文档。我知道我可以通过发布这样的 http 帖子来执行此操作:

POST /feeds/default/private/full?ocr=true HTTP/1.1
Host: docs.google.com
GData-Version: 3.0
Authorization: 
Content-Length: 1984
Content-Type: image/png
Slug: OCRd Doc

... png contents here ...

但是可以使用 DocsService 来实现此目的吗?

I'm wondering if it is poosible to upload and OCR a document using google-docs api in Java. I know I can in a way perform this by making such a http post:

POST /feeds/default/private/full?ocr=true HTTP/1.1
Host: docs.google.com
GData-Version: 3.0
Authorization: 
Content-Length: 1984
Content-Type: image/png
Slug: OCRd Doc

... png contents here ...

But is it possible to achieve this using DocsService?

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

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

发布评论

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

评论(1

浅唱ヾ落雨殇 2024-10-26 13:21:30

您只需添加:

myService.insert(new URL( "http://docs.google.com/feeds/default/private/full?ocr=true"), newDocument);

You just have to add:

myService.insert(new URL( "http://docs.google.com/feeds/default/private/full?ocr=true"), newDocument);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文