2

Google ドライブでアプリを開発していますが、これらのアプリでファイルを見ることができます。ファイルをダウンロードしたいのですが、できません。これは私の機能であり、Googleのドキュメントと同じです:

よろしくお願いします!

  /* 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