java开发
u010307827
这个作者很懒,什么都没留下…
展开
-
The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar
The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar 可能一: web项目出现如上问题,据查是版本问题: JSTL 1.0 的声明是: JSTL1.1 的声明是: 项目中,已经是 jstl 1.2 版本了,页面转载 2016-02-19 15:05:49 · 551 阅读 · 0 评论 -
将中文转换成URL编码
/** * 将中文转换成url编码 * 2016-4-26 10:17:39 */ public static String toUrlEncode(String s) { StringBuffer sb = new StringBuffer(); for (int i = 0; i char c = s.charAt(i); if (c >= 0 && c sb.appe转载 2016-04-26 10:15:23 · 1248 阅读 · 0 评论 -
通过访问第三方URL返回json数据
/** * 通过URL获取json数据 2016-4-19 08:53:43 * * @param url * @return */ public static String loadJson(String url) { StringBuilder json = new StringBuilder(); try { URL urlObject = new URL(url);转载 2016-04-26 10:19:17 · 2657 阅读 · 0 评论