上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 33 下一页
摘要: public class Test { public static void main(String[] args) { Integer[] a = {1,2,3}; Integer[] b = {4,5,6}; Integer[] c = new Integer[a.length+b.length]; Sys... 阅读全文
posted @ 2016-11-28 09:34 N神3 阅读(1308) 评论(0) 推荐(0) 编辑
摘要: dhtmlxScheduler是一个JavaScript日程安排控件 官方网站:http://www.dhtmlx.com/在线帮助文档:http://docs.dhtmlx.com/doku.php?id=dhtmlxscheduler:toc下载地址:http://www.dhtmlx.com/ 阅读全文
posted @ 2016-11-23 10:12 N神3 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 语法形式:ROW_NUMBER() OVER(PARTITION BY COL1 ORDER BY COL2) 解释:根据COL1分组,在分组内部根据 COL2排序,而此函数计算的值就表示每组内部排序后的顺序编号(组内连续的唯一的) 阅读全文
posted @ 2016-11-15 16:07 N神3 阅读(162) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; import java.util.Date; import java.util.List; import net.sf.json.JSONObject; public class Test { public static void main(String[] args) { Mybean bean = new Test().new... 阅读全文
posted @ 2016-11-10 18:25 N神3 阅读(311) 评论(0) 推荐(0) 编辑
摘要: import org.apache.commons.beanutils.BeanUtils;public class Person { private String name; public String getName() { return name; } public void setName( 阅读全文
posted @ 2016-11-10 14:21 N神3 阅读(455) 评论(0) 推荐(0) 编辑
摘要: //LinkedHashMap先入先出 public class Test { public static void main(String[] args) { Map map = new HashMap(); map.put("aaa", "111"); map.put("bbb", "222"); map.put("ccc", "333"); for(Entry e :map.entryS... 阅读全文
posted @ 2016-11-10 09:54 N神3 阅读(3346) 评论(0) 推荐(0) 编辑
摘要: dba_data_files:数据库数据文件信息表。可以统计表空间大小(总空间大小)。 dba_free_space:可以统计剩余表空间大小。 增加表空间即向表空间增加数据文件,表空间大小就是数据文件总大小。 检查Oracle各个表空间的增长情况(各表空间使用率) 阅读全文
posted @ 2016-11-08 15:27 N神3 阅读(13984) 评论(0) 推荐(0) 编辑
摘要: HSB(hue、saturation、bright) 基于人眼 RGB 基于光 CMYK 基于色 LAB 基于大自然颜色库(理论) 阅读全文
posted @ 2016-11-06 17:34 N神3 阅读(154) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) throws IOException { System.out.print("Enter a number:"); Scanner in = new Scanner(System.in); boolean availabl 阅读全文
posted @ 2016-11-01 15:14 N神3 阅读(215) 评论(0) 推荐(0) 编辑
摘要: white-space: nowrap 不换形 overflow: hidden 隐藏长度超出部分 text-overflow:ellipsis 文字长度超出用省略号代替 <p style="width:300px;line-height:20px;"> <span style="display:i 阅读全文
posted @ 2016-10-26 18:24 N神3 阅读(648) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 33 下一页