摘要:
1. HashMap遍历的两种方式第一种: Map map = new HashMap(); Iterator iter = map.entrySet().iterator(); while (iter.hasNext()) { Map.Entry entry = (Map.Entry) iter.next(); Object key = entry.getKey(); Object val... 阅读全文
摘要:
(一)断点续传的原理 其实断点续传的原理很简单,就是在Http的请求上和一般的下载有所不同而已。 打个比方,浏览器请求服务器上的一个文时,所发出的请求如下: 假设服务器域名为wwww.sjtu.edu.cn,文件名为down.zip。 GET /down.zip HTTP/1.1 Accept: image/gif, image/x-xbitmap, image/jpeg, image... 阅读全文
摘要:
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--@OverridepublicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContent... 阅读全文
摘要:
//自己写一个广播监听函数 private final BroadcastReceiver broadcastRec =new BroadcastReceiver() {@Overridepublic void onReceive(Context context,Intentintent) {if(intent.getAction().equals(“android.intent.ac... 阅读全文