zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package cn.autoform.web.client.util;
 
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.net.URLEncoder;
 
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
 
import cn.autoform.web.client.conster.BaseConst;
 
public class URLTool {
 
    private URLTool (){
        
    }
 
    private static final Log log = LogFactory.getLog(URLTool.class);
    
    /**
     * url编码
     * @Title: encoder
     * @param @param url
     * @param @return    设定文件
     * @return String    返回类型
     * @throws
     */
    public static String encoder(String url){
        try {
            return URLEncoder.encode(url, BaseConst.PROJECT_CHARSET);
        } catch (UnsupportedEncodingException e) {
            log.error(e.getMessage(), e);
            return "";
        }
    }
    
    /**
     * url解码
     * @Title: decoder
     * @param @param url
     * @param @return    设定文件
     * @return String    返回类型
     * @throws
     */
    public static String decoder(String url){
        try {
            return URLDecoder.decode(url, BaseConst.PROJECT_CHARSET);
        } catch (UnsupportedEncodingException e) {
            log.error(e.getMessage(), e);
            return "";
        }
    }
}