上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 23 下一页
摘要: http://blog.csdn.net/gaoxiangnumber1/article/details/44634485 阅读全文
posted @ 2018-01-26 09:31 aLa神灯 阅读(78) 评论(0) 推荐(0) 编辑
摘要: /** * O(1) O(n) * * 一个算法在规模不断增大时对应的时间复杂度(变量变为n时,算法需要操作的量级) * */ 阅读全文
posted @ 2018-01-26 08:44 aLa神灯 阅读(109) 评论(0) 推荐(0) 编辑
摘要: package gather; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; public class TestThree { public static void main(String[] args) { /** ... 阅读全文
posted @ 2018-01-25 19:27 aLa神灯 阅读(81) 评论(0) 推荐(0) 编辑
摘要: package gather; public class TestTwo { public static void main(String[] args) { /** * >>> 忽略符号位,空位用0补齐 */ // int x = 7; int x = -7; ... 阅读全文
posted @ 2018-01-25 13:49 aLa神灯 阅读(118) 评论(0) 推荐(0) 编辑
摘要: Calendar cal = Calendar.getInstance(); System.out.println(cal.get(Calendar.YEAR)); System.out.println(cal.get(Calendar.HOUR_OF_DAY)); 阅读全文
posted @ 2018-01-24 16:19 aLa神灯 阅读(130) 评论(0) 推荐(0) 编辑
摘要: double num = 168588866654.0d; System.out.println(num); java.text.DecimalFormat df = new java.text.DecimalFormat("##########.00"); System.out.println(df.format(num)); 阅读全文
posted @ 2018-01-24 16:00 aLa神灯 阅读(648) 评论(0) 推荐(0) 编辑
摘要: AppID:应用的唯一标识 AppKey:公匙(相当于账号) AppSecret:私匙(相当于密码) token:令牌(过期失效) 使用方法 1. 向第三方服务器请求授权时,带上AppKey和AppSecret(需存在服务器端) 2. 第三方服务器验证AppKey和AppSecret在DB中有无记录 阅读全文
posted @ 2018-01-24 14:47 aLa神灯 阅读(906) 评论(0) 推荐(0) 编辑
摘要: 依赖的jar包 阅读全文
posted @ 2018-01-24 09:40 aLa神灯 阅读(190) 评论(0) 推荐(0) 编辑
摘要: package nettest; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.util.HashMap; impor... 阅读全文
posted @ 2018-01-24 09:03 aLa神灯 阅读(163) 评论(0) 推荐(0) 编辑
摘要: cvs ,v: Permission denied 将账户权限改成管理员 阅读全文
posted @ 2018-01-22 13:21 aLa神灯 阅读(153) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 23 下一页