我嘗試了Google雲端硬盤的某些功能,但無法從雲端硬盤下載文件。我是否缺少一些功能來創建文件?無法使用Java API從Google雲端硬盤下載文件
private static InputStream downloadFile(Drive authKey, File file) {
if (file.getDownloadUrl() != null && file.getDownloadUrl().length() > 0) {
try {
HttpResponse resp
= authKey.getRequestFactory().buildGetRequest(new GenericUrl(
file.getDownloadUrl())).execute();
//System.out.println("File Successfully Downloaded");
return resp.getContent();
} catch (IOException e) {
// An error occurred.
e.printStackTrace();
//System.out.println("Failed to Download File");
return null;
}
} else {
return null;
}
}
當我運行的功能,它成功地建立。但我沒有看到任何東西,例如下載的文件等。
你有什麼錯誤嗎?你想下載什麼樣的文件? – Gerardo
你正在處理什麼系統? (我可以幫助Android) – seanpj
@Gerardo沒有任何錯誤。 我試圖下載「.part1」文件,我以前分裂.. – septo13