1

我正在使用以下代码将公共共享图像从 google drive 加载到 android 应用程序,但有时我得到:

javax.net.ssl.SSLException: Read error: ssl=0x1d9ed0: I/O error during system call, Connection reset by peer

为什么谷歌驱动器在我下载图像之前关闭连接?这是随机发生的,但经常发生。有人遇到这样的问题吗?

public static InputStream getStream(String url)
{

    InputStream is = null;
    try
    {
        is = new URL(url).openConnection().getInputStream();
    } catch (MalformedURLException e)
    {
        L.e(e.toString());
    } catch (IOException e)
    {
        L.e(e.toString());
    }

    return is;
}

对于位图加载,我使用简单的代码:

BitmapFactory.decodeStream(stream, null, null);
4

1 回答 1

1

您可能会受到以下因素的影响: 您从文件元数据中获得的 URL 是短暂的。如果您要保存该 URL 以供以后使用,它将无法正常工作,因为该 URL 可能会失效。

为此,您必须每次都获取图像元数据以获取新的 downloadURL。

我们正在努力在未来提供不可过期的 URL。

于 2012-07-26T12:30:08.950 回答