Blame view

C5/xpadprotocal/src/main/java/com/sunvote/utils/EncodeUtils.java 1.94 KB
fac86401   孙向锦   初始化C5 Vote
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  package com.sunvote.utils;
  
  import java.io.UnsupportedEncodingException;
  import java.net.URLDecoder;
  import java.net.URLEncoder;
  
  /**
   * Created by Elvis on 2017/8/11.
   * Email:Eluis@psunsky.com
   * Description:
   * Encode工具类
   */
  
  public class EncodeUtils {
      private EncodeUtils() {
          throw new UnsupportedOperationException("No Impl");
      }
  
      /**
       * URL编码
       * <p>若想自己指定字符集,可以使用{@link #urlEncode(String input, String charset)}方法</p>
       *
       * @param input 要编码的字符
       * @return 编码为UTF-8的字符串
       */
      public static String urlEncode(String input) {
          return urlEncode(input, "UTF-8");
      }
  
      /**
       * URL编码
       * <p>若系统不支持指定的编码字符集,则直接将input原样返回</p>
       *
       * @param input   要编码的字符
       * @param charset 字符集
       * @return 编码为字符集的字符串
       */
      public static String urlEncode(String input, String charset) {
          try {
              return URLEncoder.encode(input, charset);
          } catch (UnsupportedEncodingException e) {
              return input;
          }
      }
  
      /**
       * URL解码
       * <p>若想自己指定字符集,可以使用 {@link #urlDecode(String input, String charset)}方法</p>
       *
       * @param input 要解码的字符串
       * @return URL解码后的字符串
       */
      public static String urlDecode(String input) {
          return urlDecode(input, "UTF-8");
      }
  
      /**
       * URL解码
       * <p>若系统不支持指定的解码字符集,则直接将input原样返回</p>
       *
       * @param input   要解码的字符串
       * @param charset 字符集
       * @return URL解码为指定字符集的字符串
       */
      public static String urlDecode(String input, String charset) {
          try {
              return URLDecoder.decode(input, charset);
          } catch (UnsupportedEncodingException e) {
              return input;
          }
      }
  
  
  
  
  
  }