34 lines
903 B
Java
34 lines
903 B
Java
package com.github.nkzawa.global;
|
|
|
|
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.net.URLDecoder;
|
|
import java.net.URLEncoder;
|
|
|
|
public class Global {
|
|
|
|
private Global() {}
|
|
|
|
public static String encodeURIComponent(String str) {
|
|
try {
|
|
return URLEncoder.encode(str, "UTF-8")
|
|
.replace("+", "%20")
|
|
.replace("%21", "!")
|
|
.replace("%27", "'")
|
|
.replace("%28", "(")
|
|
.replace("%29", ")")
|
|
.replace("%7E", "~");
|
|
} catch (UnsupportedEncodingException e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
|
|
public static String decodeURIComponent(String str) {
|
|
try {
|
|
return URLDecoder.decode(str, "UTF-8");
|
|
} catch (UnsupportedEncodingException e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
}
|