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