1、volley项目地址https://github.com/smanikandan14/Volley-demo(1)JSON,图像等的异步下载;(2)网络请求的排序(scheduling)(3)网络请求的优先级处理(4)缓存(5)多级别取消请求(6)和Activity和生命周期的联动(Activity结束时同时取消所有网络请求)2、android-async-http项..
分类:
移动开发 时间:
2016-01-20 15:52:27
阅读次数:
178
找出字符串中没有相同字符的的最长串注意这里的Characters指的是字符,不是字母,就是说|/?~这样的字符都会出现,所以要用到ASCII码最简单的方法是,从第一个字符开始,往后一个个判断,里面有没有重复的字符,如果重复了则记录下长度。例如:abcabcbb第一次:abc 重复于a 长度3第二次:...
分类:
其他好文 时间:
2016-01-19 20:54:56
阅读次数:
169
System Resources RTX内核通过任务进程控制模块,来标识一个任务进程。这个模块是一个动态分配的内存单元,存储着任务进程的所有控制和状态变量。当通过调用os_tsk_create or os_tsk_create_user函数来创建一个任务进程时,对应的TCB就被创建了。 TCB所占用...
分类:
其他好文 时间:
2016-01-17 17:40:07
阅读次数:
119
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
Cron is a UNIX tool that has been around for a long time, so its scheduling capabilities are powerful and proven. The CronTrigger class is based on th...
分类:
其他好文 时间:
2016-01-06 23:20:07
阅读次数:
277
SimpleTrigger should meet your scheduling needs if you need to have a job execute exactly once at a specific moment in time, or at a specific moment i...
分类:
其他好文 时间:
2016-01-06 21:52:32
阅读次数:
213
Background ProcessingRZ01Job Scheduling MonitorSM36Schedule Background JobSM36WIZJob definition wizardSM37Overview of job selectionSM37BSimple version...
分类:
其他好文 时间:
2016-01-06 19:46:21
阅读次数:
290
题目:Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters...
分类:
其他好文 时间:
2015-12-27 11:58:41
阅读次数:
126
使用Spring配置管理Quartz的时候会遇到下面的异常:Causedby:java.lang.IncompatibleClassChangeError:classorg.springframework.scheduling.quartz.CronTriggerBeanhasinterfaceorg.quartz.CronTriggerassuperclass原因是Spring3.2版本中内置的Quartz版本与Quartz包2.2中的接..
分类:
编程语言 时间:
2015-12-15 12:39:17
阅读次数:
175
@Scheduled(cron = "0 5 * * * ?")org.springframework.scheduling.annotation.Scheduled/** * Annotation that marks a method to be scheduled. Exactly one o...
分类:
编程语言 时间:
2015-12-14 14:06:57
阅读次数:
300