只有下载文件更新?

时间:2013-08-30 09:46:20

标签: java android

我正在使用下面的代码下载文件。但是我只想下载如果远程文件比较新,那么本地存储(如果有的话)。我可以以某种方式使用if-modefied-since http标头?如何更新我的代码以存档我的目标?

private class DownloadFile extends AsyncTask<String, Integer, String> {
    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        mProgressDialog.show();
    }

    @Override
    protected String doInBackground(String... sUrl) {
        try {
            URL url = new URL(sUrl[0]);
            URLConnection connection = url.openConnection();
            connection.connect();
            // this will be useful so that you can show a typical 0-100% progress bar
            int fileLength = connection.getContentLength();

            // download the file
            InputStream input = new BufferedInputStream(url.openStream());
            OutputStream output = new FileOutputStream(path);

            byte data[] = new byte[1024];
            long total = 0;
            int count;
            while ((count = input.read(data)) != -1) {
                total += count;
                publishProgress((int) (total * 100 / fileLength));
                output.write(data, 0, count);
            }

            output.flush();
            output.close();
            input.close();
        }
        catch(MalformedURLException e)
        {
            e.printStackTrace();
        }
        catch(FileNotFoundException e)
        {
            e.printStackTrace();
        }
        catch(IOException e)
        {
            e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onPostExecute(String result) {
        super.onPostExecute(result);
        mProgressDialog.dismiss();

        // TODO: here file is downloaded and we are ready to process it.
    }

    @Override
    protected void onProgressUpdate(Integer... progress) {
        super.onProgressUpdate(progress);
        mProgressDialog.setProgress(progress[0]);
    }
}

我已将代码更新为这样......

    @Override
    protected String doInBackground(String... sUrl) {
        long lastModified = new File(path).lastModified();
        try
        {
            URL url = new URL(sUrl[0]);
            URLConnection connection = url.openConnection();
            connection.connect();
            if(lastModified != 0)
            {
                connection.setIfModifiedSince(lastModified);
            }
            // this will be useful so that you can show a typical 0-100% progress bar
            int fileLength = connection.getContentLength();
...

关于如何实际测试这个的任何好主意?如果文件不是更新,则不应运行while循环,对吧?

2 个答案:

答案 0 :(得分:3)

这正是那个标题的目的。您需要发出HTTP HEAD请求以获取标头,然后将标头中的时间戳与文件上最后修改的时间戳进行比较。如果服务器的副本较新,请发出GET以下载新副本。

答案 1 :(得分:2)

如果文件标记的日期较新但二进制级别相同,该怎么办?也许更好地解决下载新版本文件的问题,就是在服务器上保留文件的哈希值,然后先下载哈希值,然后将其与本地文件的哈希值进行比较。如果不匹配,则从服务器获取完整文件。如果我假设同一个文件可以有不同(和更新)的修改日期,则可能为用户节省一些带宽。