文件名称:Android 连网下载APK文件并自动安装.rar
文件大小:13KB
文件格式:RAR
更新时间:2022-07-30 05:03:56
Android源码-网络编程
Android 连网下载APK文件并自动安装的例子,这个例子在智能手机上已经不是个新鲜功能了,那么具体是如何实现的呢?本源码会告诉你答案,而且代码中的注释也是非常多的,对于学会此技巧很有帮助。下面是代码片段: mTextView.setText("下载中...");//显示下载中 strURL = mEditText.getText().toString(); //获取URL地址 fileEx = strURL.substring(strURL.lastIndexOf(".") 1, strURL.length()).toLowerCase();//取得Apk的路径 fileNa = strURL.substring(strURL.lastIndexOf("/") 1, strURL.lastIndexOf("."));//取得欲安装程序之文件名称 getFile(strURL);//调用getFile方法 URL myURL = new URL(strPath); //取得URL System.out.println("myURL=" myURL); URLConnection conn = myURL.openConnection(); //建立联机 conn.connect(); InputStream is = conn.getInputStream(); //InputStream 下载文件 if (is == null) //如果取得的数据为null
【文件预览】:
codesc.net
----com.bn.ex8n.Sample8_14_Activity()
--------.project(846B)
--------project.properties(667B)
--------src()
--------AndroidManifest.xml(978B)
--------res()
--------.settings()
--------assets()
--------gen()
--------.classpath(364B)