我正在使用谷歌驱动器开发一个应用程序,我可以使用这些应用程序查看我的文件。我想下载文件,但我不能。这是我的功能,相当于谷歌文档:
提前谢谢!!
/* 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卡,系统等?
肯定是别的什么??