上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页
摘要: Arrays.sort(Array)对数组排序 public static void main(String[] args) throws IOException { int[] a = {1,3,9,23,54,4,5,2}; Arrays.sort(a); for(int i : a){ System.out.println(i); } } 阅读全文
posted @ 2017-01-09 11:16 N神3 阅读(417) 评论(0) 推荐(0) 编辑
摘要: org.json 和 json-lib 使用上差不多。 阅读全文
posted @ 2017-01-09 09:03 N神3 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 注释:图片名称:img_1.jpg ... img_100.jpg 共一百张图片。 阅读全文
posted @ 2017-01-06 20:41 N神3 阅读(1329) 评论(0) 推荐(0) 编辑
摘要: 应用架包:json-lib-2.4-jdk15.jar、及相关依赖架包。 一、JSONObject和JSONArray对象 分割线 String jsonObject_str = "{'name':'张三','age':25,sex:'男'}" //一个json对象 JSONObject jSONO 阅读全文
posted @ 2017-01-04 16:22 N神3 阅读(1544) 评论(0) 推荐(0) 编辑
摘要: 依赖架包:pinyin4j.jar 阅读全文
posted @ 2016-12-30 16:06 N神3 阅读(238) 评论(0) 推荐(0) 编辑
摘要: --开启行移动功能alter table 表名 enable row movement;--恢复表数据flashback table 表名 to timestamp to_timestamp('2014-05-19 09:40:00','yyyy-mm-dd hh24:mi:ss');上述时间为删除 阅读全文
posted @ 2016-12-30 10:38 N神3 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 微博分享 阅读全文
posted @ 2016-12-16 12:26 N神3 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 对象级别的插件开发 通过"$.fn.extend()"为原型动态挂载相关的属性。jQuery对象可以调用属性/方法。 阅读全文
posted @ 2016-12-09 17:49 N神3 阅读(237) 评论(0) 推荐(0) 编辑
摘要: /*蒙版*/ .loading-mask { width: 100%; height: 100%; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #fff; opacity: 0.3; filter: alph... 阅读全文
posted @ 2016-12-09 15:21 N神3 阅读(6613) 评论(0) 推荐(0) 编辑
摘要: 1、window 对象 浏览器会在其打开一个 HTML 文档时创建一个对应的 window 对象。但是,如果一个文档定义了一个或多个框架(即,包含一个或多个 frame 或 iframe 标签),浏览器就会为原始文档创建一个 window 对象,再为每个框架创建额外的 window 对象 2、con 阅读全文
posted @ 2016-12-01 09:57 N神3 阅读(1078) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页