0

我需要在我的应用程序中显示用户的图片并从服务器检索该图片,因为我的应用程序也可以在离线模式下工作,所以我需要将该图片从服务器保存到我的 SD 卡,当我下次从服务器同步数据时,如果图片已更改,那么我也需要更改 SD 卡中的图片 如何确定特定用户的图片是否已更改

目前我从服务器保存图像如下,尽管我现在使用硬编码的 url 和静态用户 ID

public class fetchImage extends Activity implements OnClickListener {
int id;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    id = 1;// declaring static as of now

}

{

    new BackgroundTask().execute();
    File storagePath = Environment.getExternalStorageDirectory();
    File imgFile = new File(storagePath, "/Pictures/" + id + ".jpg");

    if (imgFile.exists()) {
        Bitmap myBitmap = BitmapFactory.decodeFile(imgFile
                .getAbsolutePath());
    }

}

class BackgroundTask extends AsyncTask<Void, Void, Void> {
    ProgressDialog mDialog;

    protected void onPreExecute() {
        mDialog = ProgressDialog.show(fetchImage.this, "",
                getString(R.string.progress_bar_loading), true);
    };

    @Override
    protected Void doInBackground(Void... params) {
        try {

            savesd(id, null);

        } catch (final Exception e) {

        }
        return null;
    }

    private void savesd(int id, URL uri) throws IOException {
        URL url;
        if (uri == null) {
            url = new URL("http://i.zdnet.com/blogs/3-29-androids.jpg");
        } else {
            url = uri;
        }
        InputStream input = url.openStream();
        try {
            File storagePath = Environment.getExternalStorageDirectory();
            OutputStream output = new FileOutputStream(new File(
                    storagePath, "/Pictures/" + id + ".jpg"));
            try {
                byte[] buffer = new byte[20000];
                int bytesRead = 0;
                while ((bytesRead = input.read(buffer, 0, buffer.length)) >= 0) {
                    output.write(buffer, 0, bytesRead);
                }
            } finally {
                output.close();
            }
        } catch (Exception e) {

            e.printStackTrace();
        } finally {
            input.close();
        }

    }

    protected void onPostExecute(Void result) {
        mDialog.dismiss();
    };
}

@Override
public void onClick(View v) {
    // TODO Auto-generated method stub

}

}

另外我有一个问题,当我从设备上卸载这个应用程序时,它还应该从 sd 卡中清除这些用户图像

4

1 回答 1

0

我使用时间戳来保存我上次同步数据的时间,并且仅在该时间戳之后下载文件

于 2012-10-20T09:18:16.487 回答