上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 82 下一页
摘要: 【案例1】通过一个对象获得完整的包名和类名123456789101112131415packageReflect;/*** 通过一个对象获得完整的包名和类名* */classDemo{//other codes...}classhello{publicstaticvoidmain(String[] ... 阅读全文
posted @ 2015-01-08 08:51 netcorner 阅读(190) 评论(0) 推荐(0) 编辑
摘要: // 反射调用某个对象的方法 public Object invokeMethod(Object methodObject, String methodName, Object[] args) throws Exception { Class ownerClass = methodObjec... 阅读全文
posted @ 2015-01-08 08:49 netcorner 阅读(871) 评论(0) 推荐(0) 编辑
摘要: 启动SQL Server 2008Management Studio工具菜单----选项----Designers(设计器)----阻止保存要求重新创建表的更改 取消勾选即可。 阅读全文
posted @ 2015-01-08 08:41 netcorner 阅读(156) 评论(0) 推荐(0) 编辑
摘要: Eclipse中10个最有用的快捷键组合一个Eclipse骨灰级开发者总结了他认为最有用但又不太为人所知的快捷键组合。通过这些组合可以更加容易的浏览源代码,使得整体的开发效率和质量得到提升。 1. ctrl+shift+r:打开资源 这可能是所有快捷键组合中最省时间的了。这组快捷键可以让你打开你的工... 阅读全文
posted @ 2015-01-08 08:33 netcorner 阅读(240) 评论(0) 推荐(0) 编辑
摘要: Date date=new Date();SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");formatter.format(date); 阅读全文
posted @ 2015-01-08 08:31 netcorner 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Map遍历只要有两种方法:1.通过Map的KeySet进行遍历2.通过Map的EntrySet进行遍历[java] view plaincopy在CODE上查看代码片派生到我的代码片// Map的遍历方法一:通过map的KeySet进行遍历 @Test public void t... 阅读全文
posted @ 2015-01-08 08:30 netcorner 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1几个最重要的快捷键java 自动生成get set方法的快捷键是什么?如果你说的是Eclipse,也许你还说是MyEclipse快捷键: Alt + Shift + S, 等一会,再按 R注释快捷键先敲“/”在敲两个**,然后回车代码助手:Ctrl+Space(简体中文操作系统是Alt+/)快速修... 阅读全文
posted @ 2015-01-08 08:29 netcorner 阅读(223) 评论(0) 推荐(0) 编辑
摘要: begin ,rollback,commit .当然有的人用begin /begin work .推荐用START TRANSACTION 是SQL-99标准启动一个事务。 start transaction;update from account set money=money-100 wh... 阅读全文
posted @ 2015-01-08 08:26 netcorner 阅读(465) 评论(0) 推荐(0) 编辑
摘要: begin Insert into T_SYS_PAGEOPER (FOPERID,FPAGEID) values (152,22); Insert into T_SYS_PAGEOPER (FOPERID,FPAGEID) values ('asdfasdf',22); commit;end... 阅读全文
posted @ 2015-01-08 08:25 netcorner 阅读(503) 评论(0) 推荐(0) 编辑
摘要: Thread.currentThread().getContextClassLoader().getResource("") 阅读全文
posted @ 2015-01-08 08:24 netcorner 阅读(190) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 82 下一页