可能重复:
android: webservice image replace with images in Local folder
如何使用从Web服务接收的URL替换本地文件夹中的图像。请提供示例代码或简单示例。
在本期中指导我。
提前致谢。
此致
答案 0 :(得分:0)
URL url="http://....";
String FILENAME;
InputStream input=new InputStream(url.openConnection()
BufferedInputStream bis = new BufferedInputStream(input);
fileDest=new File(FILENAME);
if ( fileDest.exists() ){
if ( ! fileDest.delete() )
throw new Exception (
"impossible to delete "+ fileDest.getName());
}
FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(bis.getBytes());
fos.close();
我想你可以从这开始。