我的代碼工作正常,它將圖像下載到sd卡,但是,我得到此警告,我在其中定義了我的sd卡路徑「不要硬編碼」/ sdcard /「;使用Environment.getExternalStorageDirectory()的getPath(),而不是「得到sd卡路徑在android vs硬編碼路徑
@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]);
}
的問題是,如果我使用建議的解決方案,那麼我將不能夠給我下載的文件一個新的名稱(」 .temp」 )
的OutputStream輸出=新的FileOutputStream中(新的文件(Environment.getExternalStorageDirectory(), 「.temp」)getAbsolutePath()) – dex