我需要解码包含查询字符串的URI;预期的输入/输出行为类似于以下内容:
abstract class URIParser
{
/** example input:
* something?alias=pos&FirstName=Foo+A%26B%3DC&LastName=Bar */
URIParser(String input) { ... }
/** should return "something" for the example input */
public String getPath();
/** should return a map
* {alias: "pos", FirstName: "Foo+A&B=C", LastName: "Bar"} */
public Map<String,String> getQuery();
}
我尝试使用java.net.URI,但它似乎解码了查询字符串,因此在上面的示例中我留下了“alias = pos&amp; FirstName = Foo + A&amp; B = C&amp; LastName = Bar “所以有一个模糊不清是否”&amp;“是查询分隔符,或者是查询组件中的字符。
修改:我刚试过URI.getRawQuery()并且它没有进行编码,所以我可以用&
拆分查询字符串,但是我该怎么做? Javascript有decodeURIComponent,我似乎无法在Java中找到相应的方法。
有什么建议吗?我宁愿不使用任何新库。
答案 0 :(得分:60)
使用
URLDecoder.decode(proxyRequestParam.replace("+", "%2B"), "UTF-8")
.replace("%2B", "+")
模拟decodeURIComponent
。 Java的URLDecoder
将加号解码为空格,这不是您想要的,因此您需要替换语句。
警告 -urlencoded)包含该字符串,如@xehpuk所指出的那样。
答案 1 :(得分:18)
请参阅课程URLDecoder
答案 2 :(得分:4)
var reqParam = URLDecoder.decode(reqParam, "UTF-8")
答案 3 :(得分:0)
关于+号的问题:
我根据@janb
的答案创建了一个包装URLDecoder函数的帮助器类import android.net.Uri;
import android.support.annotation.Nullable;
import android.text.TextUtils;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
public class DateDecoder {
private static final String KEY_DATE = "datekey";
private static final SimpleDateFormat SIMPLE_DATE_FORMAT =
new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZZZZZ", Locale.US);
public static void main(String[] args) throws UnsupportedEncodingException {
try {
Uri uri = Uri.parse("http://asdf.com?something=12345&" +
KEY_DATE +"=2016-12-24T12:00:00+01:00");
System.out.println("parsed date: " + DateDecoder.createDate(uri)); // parsed date: Sat Dec 24 12:00:00 GMT+01:00 2016
} catch (Exception e) {
e.printStackTrace();
}
}
@Nullable
public static Date createDate(@Nullable Uri data) {
if (data != null) {
try {
String withPlus = decodeButKeepPlus(KEY_DATE, data.getEncodedQuery());
if (!TextUtils.isEmpty(withPlus)) {
return SIMPLE_DATE_FORMAT.parse(withPlus);
}
} catch (Exception e) {
e.printStackTrace();
}
}
return null;
}
/**
* copied from android.net.Uri.java
*/
@Nullable
public static String decodeButKeepPlus(String encodedKey, String completeEncodedQuery)
throws UnsupportedEncodingException {
final int length = completeEncodedQuery.length();
int start = 0;
do {
int nextAmpersand = completeEncodedQuery.indexOf('&', start);
int end = nextAmpersand != -1 ? nextAmpersand : length;
int separator = completeEncodedQuery.indexOf('=', start);
if (separator > end || separator == -1) {
separator = end;
}
if (separator - start == encodedKey.length()
&& completeEncodedQuery.regionMatches(start, encodedKey, 0, encodedKey.length())) {
if (separator == end) {
return "";
} else {
String encodedValue = completeEncodedQuery.substring(separator + 1, end);
if (!TextUtils.isEmpty(encodedValue)) {
return URLDecoder.decode(encodedValue.replace("+", "%2B"), "UTF-8").replace("%2B", "+");
}
}
}
// Move start to end of name.
if (nextAmpersand != -1) {
start = nextAmpersand + 1;
} else {
break;
}
} while (true);
return null;
}
}
答案 4 :(得分:0)
new java.net.URI(proxyRequestParam).getPath()
由js encodeURIComponent编码的字符串应该只是一个路径,没有模式等。但是,它仍然是java.net.URI的有效输入。因此,java.net.URI将为我们做所有事情,然后便是我们想要的路径。