楚落凡尘

2018年12月26日

getString与optString的区别

摘要: JSONObject.getString("key"):当对象中没有key属性的时候,会抛出No value for "key"的异常; JSONObject.optString("key"):不会; 阅读全文

posted @ 2018-12-26 15:45 楚落凡尘 阅读(3621) 评论(0) 推荐(0) 编辑

2018年12月21日

oracle分页

摘要: select * from (select i.*, row_number() over(order by ID asc) rank FROM t_purc_file i) where rank >= 2 AND rank <= 4; 阅读全文

posted @ 2018-12-21 20:12 楚落凡尘 阅读(97) 评论(0) 推荐(0) 编辑

2018年12月20日

在eclispe上git 代码滚回

摘要: 1、项目 - 鼠标右键 - team - show in history; 2、history窗口 - 选择需要回滚到的版本 - reset - hard;3、项目 - 鼠标右键 - team - push branch ??;(??为分支名称) 4、【注意!慎重!一定要对比/确认好要回滚的版本】 阅读全文

posted @ 2018-12-20 18:35 楚落凡尘 阅读(416) 评论(0) 推荐(0) 编辑

2018年12月19日

一个简单的Quartz定时任务

摘要: springMVC-mvc.xml添加配置声明 阅读全文

posted @ 2018-12-19 14:01 楚落凡尘 阅读(162) 评论(0) 推荐(0) 编辑

2018年12月17日

展示金额的方法(1元-->1.00元)

摘要: 1 public static String showMoneyByTwoDecimal(String account) { 2 DecimalFormat doubleFormatter = new DecimalFormat("#0.00"); 3 if(org.apache.commons.lang.StringUtils.isEmpty(a... 阅读全文

posted @ 2018-12-17 20:55 楚落凡尘 阅读(283) 评论(0) 推荐(0) 编辑

2014年10月21日

求2/1+3/2+5/3+8/5+13/8...前20项之和

摘要: package com.exercise.coreJava;/** *求2/1+3/2+5/3+8/5+13/8...前20项之和 */public class Sum { public static void main(String[] args) { double sum ... 阅读全文

posted @ 2014-10-21 11:04 楚落凡尘 阅读(1562) 评论(0) 推荐(0) 编辑

2014年10月16日

几个时间对象的转化关系

摘要: 菜鸟新手刚学java,请各位大神指教! 阅读全文

posted @ 2014-10-16 16:57 楚落凡尘 阅读(168) 评论(0) 推荐(0) 编辑

导航