0
在我的應用程序啓動畫面開始時,我正在從URL下載圖像。我想在我的應用程序的其他活動中使用相同的圖像。以下是我的代碼下載圖像如何使用存儲在內部數據存儲器中的圖像android
public void DownloadImage(String fileName)
{
try
{
URL url = new URL(main.BannerImage); //you can write here any link
File file = new File(fileName);
Log.e("file ",""+file);
URLConnection ucon = url.openConnection();
InputStream is = ucon.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
ByteArrayBuffer baf = new ByteArrayBuffer(50);
int current = 0;
while ((current = bis.read()) != -1)
{
baf.append((byte) current);
}
FileOutputStream fos = new FileOutputStream(file);
fos.write(baf.toByteArray());
fos.close();
}
catch (IOException e)
{
Log.e("Error: ","" + e);
}
我怎樣才能獲得的圖像作爲背景源在另一個活動,請幫助我的朋友
海迪帕我有一些懷疑與您的代碼 – Abhi