java
lstFable
这个作者很懒,什么都没留下…
展开
-
Maven搭建项目时默认J2SE-1.5解决方法
构建Maven工程的时候报以下告警:Description ResourcePath LocationTypeBuild path specifies execution environment J2SE-1.5. There are no JREs installed in the workspace that are strictly compatible with this原创 2017-01-07 00:17:31 · 5590 阅读 · 1 评论 -
class.getResource和class.getClassLoader().getResource()路径对比
System.out.println(TestCase.class.getResource(""));System.out.println(TestCase.class.getResource("/"));System.out.println(TestCase.class.getResource("/SqlMapConfig.xml"));System.out.println(TestCas原创 2016-12-20 22:46:23 · 598 阅读 · 0 评论 -
get请求有中文时候一次encodeURI无效的解决方法
原文地址: http://blog.csdn.net/renminzdb/article/details/42422143encodeURI(encodeURI("中文"));第一次是把中文编码成%xy的格式,第二次是对%xy中的%进行编码,%编码成%25。整个传参过程大体应该是:提交页面使用encodeURI(encodeURI("中文"))编码,把最后的编码结果%25xy传递给转载 2017-01-10 10:39:57 · 2839 阅读 · 0 评论