私のコードはうまく動作し、イメージをsdカードにダウンロードしますが、私は自分のsdカードパスを定義したこの警告を受け取ります「ハードコードしないでください/ Environment.getExternalStorageDirectory()。ある、getPath()の代わりに.TEMP」「アンドロイド対ハードコードされたパスでsdカードパスを取得
@Override
protected String doInBackground(String... aurl) {
int count;
try {
URL url = new URL(aurl[0]);
URLConnection conexion = url.openConnection();
conexion.connect();
int lenghtOfFile = conexion.getContentLength();
Log.d("ANDRO_ASYNC", "Lenght of file: " + lenghtOfFile);
InputStream input = new BufferedInputStream(url.openStream());
OutputStream output = new FileOutputStream("/sdcard/.temp");//.temp is the image file name
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
publishProgress("" + (int) ((total * 100)/lenghtOfFile));
output.write(data, 0, count);
}
output.flush();
output.close();
input.close();
} catch (Exception e) {
}
return null;
}
protected void onProgressUpdate(String... progress) {
Log.d("ANDRO_ASYNC", progress[0]);
}
問題は、私が提案された解決策を使用する場合、私は(私のダウンロードしたファイルの新しい名前を与えることはできません、です」 )
OutputStreamの出力=新しいのFileOutputStream(新しいファイル(Environment.getExternalStorageDirectory()、 ".TEMP")は、getAbsolutePath()) – dex