0
你好我試圖讓我的谷歌驅動器的文件列表。谷歌雲端硬盤Android API列表文件
我從谷歌開發者頁面這種方法,但它不斷給我同樣的錯誤,類似的方法在一些網上的例子使用,但依賴於執行方法調用。
private static List<File> retrieveAllFiles(Drive service) throws IOException {
List<File> result = new ArrayList<File>();
Files.List request = service.files().list();
do {
try {
FileList files = request.execute() <--- Cannot resolve method execute;
result.addAll(files.getItems());
request.setPageToken(files.getNextPageToken());
} catch (IOException e) {
System.out.println("An error occurred: " + e);
request.setPageToken(null);
}
} while (request.getPageToken() != null &&
request.getPageToken().length() > 0);
return result;
}
有什麼錯誤?如果logcat中有任何東西,你也應該分享它。 – Andy
沒有日誌貓,因爲該項目將不能編譯。它顯示的唯一錯誤上面 – Maclaren
一個如果你想列出的Android設備上的文件,我建議在看看在谷歌的谷歌雲端硬盤Android API播放服務 https://developers.google.com/驅動/安卓/查詢 –