0

徹底的に検索した後、ファイルのダウンロードの問題を解決するための解決策を見つけることができませんでした。

次のスクリプトは、 WebViewClientを介してリモート(Hotmail)サーバーからcsvファイルをダウンロードするように設計されています 。

ログインプロセスは標準のWebサイトから行われますが、次のダウンロードクラスを使用して、ダウンロードしたcsvファイルをキャプチャし、カスタムの場所に保存したいと思います。

たとえば、site.com / file.pdfなどのファイルに直接リンクするURLでは正常に機能しますが、接続がリセットされるまでハングするだけのsite.com/downloadFile.php?n=xxxxなどの処理済みURLでは機能しません。リモートサーバーによる

    private class DownloadFile extends AsyncTask<String, Integer, String> {

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        mProgressDialog.show();
    }

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

     @Override
     protected void onPostExecute (String result){

     super.onPostExecute(result);

     mProgressDialog.dismiss();
     mProgressDialog = null;
     }


    @Override
    protected String doInBackground(String... sUrl) {

        try {

            Log.i("File download", "Started from :"+sUrl[0]);

            URL url = new URL(sUrl[0]);
            //URLConnection connection = url.openConnection();
            File myDir = new File(Environment.getExternalStorageDirectory() + "/myDir");

            // create the directory if it doesnt exist
            if (!myDir.exists()) myDir.mkdirs();            

            HttpURLConnection connection = (HttpURLConnection) url.openConnection();


            //Follow redirects so as some sites redirect to the file location
            connection.setInstanceFollowRedirects(true);        
            connection.setDoOutput(true);           

            connection.connect();

            File outputFile     =   new File(myDir, "hotmail_contacts.csv");

            // 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(outputFile);

            byte data[] = new byte[1024];
            long total = 0;
            int count;

            while ((count = input.read(data)) != -1) {

                total += count;
                // publishing the progress....
                publishProgress((int) (total * 100 / fileLength));
                output.write(data, 0, count);
            }


            connection.disconnect();
            output.flush();
            output.close();
            input.close();

            Log.i("File download", "complete");

        } catch (Exception e) {

            Log.e("File download", "error: " + e.getMessage());

        }
        return null;
    }
}

上記のAsyncTaskは、onDownloadStart(....)メソッドで次のように呼び出されます。

public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimeType, long length) {

        Log.i("File download", "URL:" + url 
                + " UserAgent:" + userAgent
                + "ContentDisposition:" + contentDisposition 
                + "Mime:"+ mimeType + "Length:" + Long.toString(length));



        // instantiate it within the onCreate method
        mProgressDialog = new ProgressDialog(Email_import.this);
        mProgressDialog.setMessage("File download");
        mProgressDialog.setIndeterminate(false);
        mProgressDialog.setMax(100);
        mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);

        // start a new download
        DownloadFile downloadFile = new DownloadFile();
        downloadFile.execute(url);

    }// end onCreate

外部ストレージの書き込み、インターネット、ネットワーク状態の読み取りなど、関連するすべての権限がマニフェストにあります。

ここで何かが足りませんか?どんな助けでも大歓迎です

4

1 に答える 1

0

[ここ][1]にリストされている別の投稿を見た後

[1]:Webviewからカスタムフォルダーにファイルをダウンロードする以下に示すように、 HttpClientオブジェクトを使用してURLをHttpPostリクエストとして呼び出すようにコードを調整しましたが、正常に機能しているようです。

                // Create client and set our specific user-agent string
            HttpClient client = new DefaultHttpClient();
            HttpPost request = new HttpPost(sUrl[0]);               
            request.setHeader("User-Agent", sUrl[1]);               

            HttpResponse response = client.execute(request);

            Log.i("File download", "Started from :" + sUrl[0]);

            File myDir = new File(Environment.getExternalStorageDirectory() + "/myDir");

            // create the directory if it doesnt exist
            if (!myDir.exists())    myDir.mkdirs();

            File outputFile = new File(myDir, "hotmail_contacts.csv");

            InputStream input   = response.getEntity().getContent();
于 2012-04-18T21:56:26.967 に答える