摘要: package com.van.common.utils; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import java.net.URLEncoder; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServ... 阅读全文
posted @ 2017-04-26 22:14 dengrq 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 网盘帮助文档 链接:https://pan.baidu.com/s/15xXkyfySG7Fjr7Qj-Hhs7w 密码:llxb 阅读全文
posted @ 2017-04-26 22:12 dengrq 阅读(10463) 评论(2) 推荐(0) 编辑
摘要: /** * 降序升序 * * @param str * @since 0.0.1 */ public void sort(String str){ String[] nums = str.split(" "); List odd = new ArrayList(); List ... 阅读全文
posted @ 2017-04-26 22:09 dengrq 阅读(412) 评论(0) 推荐(0) 编辑
摘要: /** * 回文数字判断 * * @param num * @since 0.0.1 */ public void huiwen(String num){ Integer temp = (num.length())/2 ; System.out.println(temp); b... 阅读全文
posted @ 2017-04-26 22:06 dengrq 阅读(198) 评论(0) 推荐(0) 编辑