上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: instanceof String s = ""; System.out.println(s instanceof String); // true simpleName String s = ""; System.out.println(s.getClass().getSimpleName()); // String 阅读全文
posted @ 2015-08-31 12:07 ordinary01 阅读(8403) 评论(0) 推荐(1) 编辑
摘要: 1.下载解压包 下载地址 ,下载之后我是直接解压到E:\emacs中的,E:\emacs中就有bin,libexec…等文件;2.点击bin中的addpm.exe文件进行安装emacs;3.就会发现配置文件在C:\Users\电脑名\AppData\Roaming\.emacs,(可以打开emacs... 阅读全文
posted @ 2015-08-31 00:10 ordinary01 阅读(1448) 评论(0) 推荐(0) 编辑
摘要: //获取当前系统毫秒 System.out.println(System.currentTimeMillis()); //获取当前系统纳秒 System.out.println(System.nanoTime()); 阅读全文
posted @ 2015-08-28 11:55 ordinary01 阅读(3787) 评论(0) 推荐(0) 编辑
摘要: 判断一个字符串是否为空方法有三种 str!=null “”.equal(str) str.length()!=0(注意:length是属性,一般集合类对象拥有的属性,取得集合的大小。例如:数组.length表示数组的属性取得数组的长度length()是方法,一般字符串对象有该方法,也是取得字符串的长度。例如:字符串.length() 在java中有()的表示方法,没有的表示属性)说明: nu... 阅读全文
posted @ 2015-08-28 11:53 ordinary01 阅读(612) 评论(0) 推荐(0) 编辑
摘要: 无包间 包间 is ${flag } 阅读全文
posted @ 2015-08-07 11:53 ordinary01 阅读(610) 评论(0) 推荐(0) 编辑
摘要: public static double GetDistance(double lat1, double lng1, double lat2, double lng2) { //latitude纬度 longitude 经度 double a, b, R... 阅读全文
posted @ 2015-08-07 11:14 ordinary01 阅读(333) 评论(0) 推荐(0) 编辑
摘要: request.getQueryString()request.getParameterMap()request.getParameterNames()在servlet中GET请求可以通过HttpServletRequest的getRequestURL方法和getQueryString()得到完整的... 阅读全文
posted @ 2015-08-05 10:57 ordinary01 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 当${business.branchName }为空或者不存在的时候显示“请选择门店” 阅读全文
posted @ 2015-08-05 01:34 ordinary01 阅读(764) 评论(0) 推荐(0) 编辑
摘要: 1 2 //原理:第一次进入页面的时候id为history_back的标签为空,会执行第15行的方法为history_back赋值,当页面由下一页返回的时候history_back已经有了值,所以就会跳到第7行的方法里面执行里面的方法 阅读全文
posted @ 2015-07-07 19:52 ordinary01 阅读(3790) 评论(1) 推荐(0) 编辑
摘要: public static void main(String[] args) { Date d = new Date(); System.out.println(d); // Date类的默认格式 Tue Jul 07 19:17:40 CST 2015 /... 阅读全文
posted @ 2015-07-07 19:41 ordinary01 阅读(818) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页