Android uses the open-source project Xutils to download files with multiple threads

Source: Internet
Author: User

Android uses the open-source project Xutils to download files with multiple threads
 

 

#2 UI implementation in layout files

 

 

     
  
       
        
    
  
 

 

#3. Implement code functions in mainactivity

 

 

Package com. wzw. downloaddemo; import java. io. file; import com. lidroid. xutils. httpUtils; import com. lidroid. xutils. exception. httpException; import com. lidroid. xutils. http. httpHandler; import com. lidroid. xutils. http. responseInfo; import com. lidroid. xutils. http. callback. requestCallBack; import android. OS. bundle; import android. app. activity; import android. view. menu; import android. view. view; import android. widget. editText; import android. widget. textView; public class MainActivity extends Activity {private EditText etPath; private TextView tvInfo; @ Overrideprotected void onCreate (Bundle savedInstanceState) {super. onCreate (savedInstanceState); setContentView (R. layout. activity_main); etPath = (EditText) findViewById (R. id. TV _path); tvInfo = (TextView) findViewById (R. id. TV _info);} public void download (View v) {String path = etPath. getText (). toString (); HttpUtils http = new HttpUtils (); http. download (path,/sdcard/360.exe, true, true, new RequestCallBack
 
  
() {@ Override public void onStart () {tvInfo. setText (connecting ...);} @ Override public void onLoading (long total, long current, boolean isUploading) {tvInfo. setText (current ++ total) ;}@ Override public void onFailure (HttpException error, String msg) {tvInfo. setText (msg) ;}@ Overridepublic void onSuccess (ResponseInfo
  
   
ResponseInfo) {// TODO Auto-generated method stubtvInfo. setText (downloaded: + responseInfo. result. getPath ());}});}}
  
 


 

Using Utils is much more convenient than using traditional methods.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.