简体   繁体   中英

adding progress dialog to storefile();

all is it possible to create a progress dialog to show the upload progress under a thread i use this code to upload a file called index.html to ftp. please help me thanx in advance..

new Thread(new Runnable() {

  public void run() {
    Looper.prepare();

    FTPClient client = new FTPClient();
    try {  
      boolean  result = false;
      FileInputStream fis = null;
      client.connect(server);
      client.enterLocalPassiveMode();
      client.login(user, pass);
      client.makeDirectory("/public_html/"+str);
      client.setFileType(FTP.BINARY_FILE_TYPE);
      client.setFileTransferMode(FTP.BINARY_FILE_TYPE );
      client.changeWorkingDirectory(str);
      String path1 =      Environment.getExternalStorageDirectory() + "/index.htm";
      File f = new File(path1);
      String testname = "/public_html/"+str+"/"+f.getName();

      fis = new 
          FileInputStream(f);
      result = client.storeFile(testname, fis);


      if (result == true){
        Log.v("upload","upload successfull");

      }
      else{
        Log.v("upload", "upload failed");

      }
      client.logout();
      client.disconnect();
    } 
    catch (Exception e) {
      Context context = getApplicationContext();
      CharSequence text = "failed!!";
      int duration = Toast.LENGTH_SHORT;

      Toast toast = Toast.makeText(context, text, duration);
      toast.show();
    }
  }


}).start();

Why not use an asynctask? With it you could spawn a dialog in the onPreExecute method than in the onProgressUpdate method update the progress of the background task...There are other ways of doing it but i believe this to be the cleanest and easiest

 private class DownloadFilesTask extends AsyncTask<URL, Integer, Long> {
     protected Long doInBackground(URL... urls) {
     int count = urls.length;
     long totalSize = 0;
     for (int i = 0; i < count; i++) {
         totalSize += Downloader.downloadFile(urls[i]);
         publishProgress((int) ((i / (float) count) * 100));
         // Escape early if cancel() is called
         if (isCancelled()) break;
     }
     return totalSize;
 }

 protected void onProgressUpdate(Integer... progress) {
     setProgressPercent(progress[0]);
 }

 protected void onPostExecute(Long result) {
     showDialog("Downloaded " + result + " bytes");
 }
}

The android dev reference should help clear things up http://developer.android.com/reference/android/os/AsyncTask.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM