Я новичок в программировании на Android и работаю над приложением, в котором я хочу сохранить изображение с URL-адреса на SD-карту, когда пользователь нажимает кнопку.Сохранить изображение на SD-карту с url throws NetworkOnmainThread Exception in android
Я нашел для него метод и использовал его, но он выбрасывает NetworkOnMainThread
исключения, приводящие к сбою приложения. Что я делаю не так?
Вот мой код:
void DownloadPost(){
try
{
URL url = new URL(mPost.postImagePath);
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setDoOutput(true);
urlConnection.connect();
File SDCardRoot = Environment.getExternalStorageDirectory().getAbsoluteFile();
String filename="downloadedFile.png";
Log.i("Local filename:",""+filename);
File file = new File(SDCardRoot,filename);
if(file.createNewFile())
{
file.createNewFile();
}
FileOutputStream fileOutput = new FileOutputStream(file);
InputStream inputStream = urlConnection.getInputStream();
int totalSize = urlConnection.getContentLength();
int downloadedSize = 0;
byte[] buffer = new byte[1024];
int bufferLength = 0;
while ((bufferLength = inputStream.read(buffer)) > 0)
{
fileOutput.write(buffer, 0, bufferLength);
downloadedSize += bufferLength;
Log.i("Progress:","downloadedSize:"+downloadedSize+"totalSize:"+ totalSize) ;
}
fileOutput.close();
Toast.makeText(PostListItem.this.getContext(),"Post saved to gallery",Toast.LENGTH_SHORT).show();
}
catch (MalformedURLException e)
{
e.printStackTrace();
}
catch (IOException e)
{
// filepath=null;
e.printStackTrace();
}
// Log.i("filepath:"," "+filepath) ;
}
показать свой полный код. – Amy