本例使用HttpGet 从服务器端下载一个apk文件,然后自动将apk安装到手机上
下载文件原理: 先获得一个InputStream,读取到数据,再写入到目的地(通常写到SD卡), 概括起来也就是先读再写
主要代码如下:
public class Main extends Activity implements OnClickListener
{
 @Override
 public void onCreate(Bundle savedInstanceState)
 {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main); 
  Button btnDownloadInstallApk = (Button) findViewById(R.id.btnDownloadInstallApk);
  btnDownloadInstallApk.setOnClickListener(this);
 } 
 //安装apk文件
 private void installApk(String filename)
 {
  File file = new File(filename);
  Intent intent = new Intent();
  intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  intent.setAction(Intent.ACTION_VIEW);     //浏览网页的Action(动作)
  String type = "application/vnd.android.package-archive";
  intent.setDataAndType(Uri.fromFile(file), type);  //设置数据类型
  startActivity(intent);
 }
 @Override
 public void onClick(View view)
 {
  //下载文件  存放目的地
  String downloadPath = Environment.getExternalStorageDirectory().getPath() + "/download_cache";  
  String url = "http://192.168.1.123/oa/apk/action.apk";
  File file = new File(downloadPath);
  if(!file.exists())
   file.mkdir();
  HttpGet httpGet = new HttpGet(url);
  try
  {
   HttpResponse httpResponse = new DefaultHttpClient().execute(httpGet);
   if (httpResponse.getStatusLine().getStatusCode() == 200)
   {
    InputStream is = httpResponse.getEntity().getContent();
    // 开始下载apk文件
    FileOutputStream fos = new FileOutputStream(downloadPath + "/action.apk");
    byte[] buffer = new byte[8192];
    int count = 0;
    while ((count = is.read(buffer)) != -1)
    {
     fos.write(buffer, 0, count);
    }
    fos.close();
    is.close();
    //安装  apk 文件
    installApk(downloadPath+ "/action.apk");
   }
  } catch (Exception e){}
 }
}

示意图

1.  2. 

3.4.
 具体代码请参见 ch09_remoteinstallapk工程,在这里要先运行服务器端oa工程,可以输入http://192.168.1.123/oa/apk/action.apk看看效果

更多相关文章

  1. Android使用图片资源
  2. Windows下修改android 模拟机 hosts文件
  3. How to Install apk to Android(安卓)Devices from Mac OS X
  4. Android命令行编译方法,不用Eclipse IDE
  5. Android中数据存储方式一:文件形式
  6. adb命令——初始环境安装
  7. android 性能測试iozone篇
  8. android是如何加载资源图片的
  9. android图片上传服务器

随机推荐

  1. 自学第五十天
  2. Android应用程序的默认最大内存值以及修
  3. 无限重置idea试用期过期时间插件 简单方
  4. Flask WEB表单-WTF简单使用
  5. 优化哈希策略
  6. Constraint遇到的那些坑之Android(安卓)V
  7. 无标题文章
  8. 迭代和函数的递归的学习
  9. 利用SpringSecurity和JWT实现mymes认证和
  10. 1.6号学习心得