0
  1. サーバーからSDカードにデータベースファイルをうまくダウンロードできますが、問題はダウンロードが中断されたときに再開されないため、ダウンロードされたデータベースファイルが不完全で、アプリがクラッシュすることです。ダウンロードを再開したり、ダウンロードしたファイルのサイズを元のファイルサイズと比較したりする方法はありますか。
  2. 別の比較目的でサーバーの日付またはネットワークオペレーターの日付を取得するにはどうすればよいですか

サンプルコード

  protected String doInBackground(String... f_url) {
        int count;
        try {
            URL url = new URL(f_url[0]);
            URLConnection conection = url.openConnection();
            conection.connect();
            // getting file length
           int lenghtOfFile = conection.getContentLength();

            // input stream to read file - with 8k buffer
            InputStream input = new BufferedInputStream(url.openStream(), 8192);

            // Output stream to write file
            String baseDir = Environment.getExternalStorageDirectory().getAbsolutePath();
            File testDirectory = new File(baseDir +"/test");
             testDirectory.mkdirs();

            OutputStream output = new FileOutputStream(testDirectory + "/db");

            byte data[] = new byte[1024];

            long total = 0;

            while ((count = input.read(data)) != -1) {
                total += count;
                // publishing the progress....
                // After this onProgressUpdate will be called
                publishProgress(""+(int)((total*100)/lenghtOfFile));

                // writing data to file
                output.write(data, 0, count);
            }

            // flushing output
            output.flush();

            // closing streams
            output.close();
            input.close();

        } catch (Exception e) {
            Log.e("Error: ", e.getMessage());
        }

        return null;
    }

    /**
     * Updating progress bar
     * */
    protected void onProgressUpdate(String... progress) {
        // setting progress percentage
        pDialog.setProgress(Integer.parseInt(progress[0]));
   }

file_url がダウンロード リンクである場所を呼び出しているだけです

  new DownloadFileFromURL().execute(file_url);
4

0 に答える 0