Google API Java OCR

时间:2011-03-01 20:11:18

标签: google-api ocr

我想知道在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实现这一目标吗?

1 个答案:

答案 0 :(得分:1)

您只需添加:

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