摘要: maven-assembly-plugin jar-with-dependencies ... 阅读全文
posted @ 2018-08-28 13:51 马艳泽 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 我要将博客搬至CSDN 阅读全文
posted @ 2018-03-22 15:39 马艳泽 阅读(90) 评论(0) 推荐(0) 编辑
摘要: select to_number( regexp_substr(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(t.gridname,'一','1'),'二','2'),'三','3'), 阅读全文
posted @ 2018-03-21 15:11 马艳泽 阅读(135) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0"?><Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:sch 阅读全文
posted @ 2018-03-20 20:16 马艳泽 阅读(587) 评论(0) 推荐(0) 编辑
摘要: 1:首先新建一个excel表格自己弄好格式如下图 2:把excel 表格另存为xml格式文件如下图 3:这个时候的文件就是xml 格式的文件了,在myeclipse里面项目工程里面新建一个文件后缀为.ftl 然后把弄好的xml文件内容直接复制粘贴到.fl文件里面 如图 2:把excel 表格另存为x 阅读全文
posted @ 2018-03-20 15:41 马艳泽 阅读(1392) 评论(0) 推荐(0) 编辑
摘要: /** * 根据字段名称取值 * * @param obj 类名 * @param fieldName 属性名 * @return */ public static Object getClassValue(Object obj, String fieldName) { if (obj == nul 阅读全文
posted @ 2018-03-18 16:16 马艳泽 阅读(1994) 评论(0) 推荐(0) 编辑
摘要: with 语句的作用是将代码的作用域设置到一个特定的对象中。 with(loctaion){ var gs = "ddd"; } 大量使用with 会使性能下降,开发大型应用中不建议使用with 阅读全文
posted @ 2018-03-12 22:42 马艳泽 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 一。java创建对象的几种方式 1.通过new关键字创建对象,这个过程一定是需要调用构造函数 2.通过反射Class.forName(classFullPathName).newInstance()创建对象,一定要调用默认的无参构造函数 3.采用clone: 4.通过序列化机制 二。写个单例模式pu 阅读全文
posted @ 2018-03-04 10:37 马艳泽 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 今天更新了mac系统,然后就踩了这个坑。 启动AndroidStudio 右上角提示: can't start git: /usr/bin/git probably the path to git executable is not valid . `fix it`. 1 2 点击fix it后 点 阅读全文
posted @ 2018-01-07 17:45 马艳泽 阅读(2256) 评论(0) 推荐(0) 编辑
摘要: 一。idea 生成的Spring MVC 项目将<url-pattern>.form<url-pattern>改成<url-pattern>.do<url-pattern>(.do 是访问的路径后缀,习惯是.do) 二。提示少个context按照提示快捷键(Mac 下 option + enter自 阅读全文
posted @ 2018-01-02 12:44 马艳泽 阅读(199) 评论(0) 推荐(0) 编辑