博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
url地址栏编码
阅读量:6273 次
发布时间:2019-06-22

本文共 2474 字,大约阅读时间需要 8 分钟。

hot3.png

 

import java.io.ByteArrayOutputStream;import sun.misc.BASE64Decoder;public class UrlUtils {	/**	  * URL 加密  这是把中文转码    	  * 

编码格式:utf-8

*/ public final static String urlEncode(String s) { try { return notEmpty(s) ? java.net.URLEncoder.encode(s, "utf-8") : null; } catch (Exception e) { return null; } } /** * URL 解密 这是解码 */ public static String urlDecode(String s) { try { return notEmpty(s) ? java.net.URLDecoder.decode(s, "utf-8") : null; } catch (Exception e) { return null; } } /** * 检查是否为空 * * @param s 需要进行检查的字符串 * @return 检查结果 */ public static Boolean notEmpty(String s) { return s==null||s.trim().length()<1 ? false : true; } // 将 s 进行 BASE64 编码 public static String getBASE64(String s) { if (s == null) return null; return (new sun.misc.BASE64Encoder()).encode(s.getBytes()); } // 将 BASE64 编码的字符串 s 进行解码 public static String getFromBASE64(String s) { if (s == null) return null; BASE64Decoder decoder = new BASE64Decoder(); try { byte[] b = decoder.decodeBuffer(s); return new String(b); } catch (Exception e) { return null; } } /* * 16进制数字字符集 */ private static String hexString = "0123456789ABCDEF"; /* * 将字符串编码成16进制数字,适用于所有字符(包括中文) */ public static String encode(String str) { // 根据默认编码获取字节数组 byte[] bytes = str.getBytes(); StringBuilder sb = new StringBuilder(bytes.length * 2); // 将字节数组中每个字节拆解成2位16进制整数 for (int i = 0; i < bytes.length; i++) { sb.append(hexString.charAt((bytes[i] & 0xf0) >> 4)); sb.append(hexString.charAt((bytes[i] & 0x0f) >> 0)); } return sb.toString(); } /* * 将16进制数字解码成字符串,适用于所有字符(包括中文) */ public static String decode(String bytes) { ByteArrayOutputStream baos = new ByteArrayOutputStream( bytes.length() / 2); // 将每2位16进制整数组装成一个字节 for (int i = 0; i < bytes.length(); i += 2) baos.write((hexString.indexOf(bytes.charAt(i)) << 4 | hexString .indexOf(bytes.charAt(i + 1)))); return new String(baos.toByteArray()); } public static void main(String[] args) throws Exception { String stest = "http://localhost:8026/loginServlet.do?username='张三'&userpass='123'"; System.out.println(urlEncode(stest)); System.out.println(urlDecode(stest)); System.out.println(UrlUtils.encode("中")); System.out.println(UrlUtils.decode("D6D0")); }}
另补充一点:
服务器接收编码后地址栏,如何获得请求参数?
URLDecoder.decode(request.getParameter("param"),"utf-8");

转载于:https://my.oschina.net/dlpinghailinfeng/blog/62693

你可能感兴趣的文章
virtualbox 笔记
查看>>
Git 常用命令
查看>>
驰骋工作流引擎三种项目集成开发模式
查看>>
SUSE11修改主机名方法
查看>>
jdk6.0 + Tomcat6.0的简单jsp,Servlet,javabean的调试
查看>>
Android:apk签名
查看>>
2(2).选择排序_冒泡(双向循环链表)
查看>>
MySQL 索引 BST树、B树、B+树、B*树
查看>>
微信支付
查看>>
CodeBlocks中的OpenGL
查看>>
短址(short URL)
查看>>
C++零基础教程(一)——何谓编程
查看>>
第十三章 RememberMe——《跟我学Shiro》
查看>>
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
运维基础命令
查看>>