我必须分部分下载文件。为此,我使用“xxx.setRequestProperty()”。但是我收到错误消息,说建立连接时无法使用它。所以我想关闭已经使用下载 URL 建立的连接。
try {
URL url = new URL(aurl[0]);
URLConnection connection = url.openConnection();
InputStream input = new BufferedInputStream(url.openStream());
Log.d(TAG,"connected");
int length = connection.getContentLength();
现在我想关闭“连接”。请提出一些方法来做到这一点。