我正在使用以下代码将公共共享图像从 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);