2

我正在使用谷歌驱动器开发一个应用程序,我可以使用这些应用程序查看我的文件。我想下载文件,但我不能。这是我的功能,相当于谷歌文档:

提前谢谢!!

  /* Download a file's content.
   * 
   * @param service Drive API service instance.
   * @param file Drive File instance.
   * 
   * @return InputStream containing the file's content if successful, {@code null} otherwise.
   */
 public static InputStream downloadFile(Drive service, File file) throws IOException
 {
    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;
     }
 }

Logcat 中没有错误,但我在下载、sd 卡等中没有看到任何文件

如果没有错误,我必须非常仔细地查看sd卡,系统等?

肯定是别的什么??

4

1 回答 1

1

您正在获取文件内容并返回一个,InputStream但是您的代码没有显示您在做什么InputStream。您需要使用它将文件的内容保存到磁盘或数据库等...请查看FaddishWorm在将文件写入 SD 卡的评论中发送给您的链接:使用 Android 下载文件,并显示ProgressDialog 中的进度

于 2012-08-21T15:36:22.047 回答