我想知道在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实现这一目标吗?
答案 0 :(得分:1)
您只需添加:
myService.insert(new URL( "http://docs.google.com/feeds/default/private/full?ocr=true"), newDocument);