有没有办法从Google云端硬盘中的文件中读取文字并将其存储在字符串中?该文件也可能包含图像。我正在查看Google Drive SDK,但它们只允许我们下载整个文件。我应该怎么做呢?
答案 0 :(得分:2)
来自Files.get()文档。
private static InputStream downloadFile(Drive service, File file) {
if (file.getDownloadUrl() != null && file.getDownloadUrl().length() > 0) {
try {
HttpResponse resp =
service.getRequestFactory().buildGetRequest(new GenericUrl(file.getDownloadUrl()))
.execute();
return resp.getContent();
} catch (IOException e) {
// An error occurred.
e.printStackTrace();
return null;
}
} else {
// The file doesn't have any content stored on Drive.
return null;
}
}
您可以根据需要将InputStream转换为String或File。