我正在开发的Android应用中运行哈希表。当我运行活动时,它将“ht”的内容转换为ASCII字符。有没有人知道防止这种情况发生的方法?
基本上,我需要解码编码文本并将结果用在字符串中。为了工作,字符串中使用的URL不能包含编码文本。
哈希表
@SuppressWarnings("unchecked")
private void executeAsyncTask(){
Hashtable<String,String> ht=new Hashtable<String,String>();
GetDeptAyncTask async=new GetDeptAyncTask();
ht.put("?TYPE=leagueSearch&JSON=1","&SEARCH=test");
try {
URLDecoder.decode(""+ht, "UTF-8");
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
@SuppressWarnings("rawtypes")
Hashtable[] ht_array={ht};
async.execute(ht_array);
}
尝试在字符串中使用
protected String doInBackground(Hashtable<String,String>... params) {
@SuppressWarnings("rawtypes")
Hashtable ht=params[0];
@SuppressWarnings("unchecked")
String json=HelperHttp.getJSONResponseFromURL(BaseUrl+"2013/export", ht);
如何在“json”字符串中读取“ht”
?%3FTYPE%3DleagueSearch%26JSON%3D1=%26SEARCH%test
如何阅读网址
?TYPE=leagueSearch&JSON=1&SEARCH=test
LogCat for“ht”
?:??: W/?(?): Hashtable {?TYPE=leagueSearch&JSON=1=&SEARCH=test}
LogCat for“json”string
?:??: W/?(?): URL==>HIDDENURL/export?%3FTYPE%3DleagueSearch%26JSON%3D1=%26SEARCH%test
?:??: W/?(?): Json Response==><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">....
?:??: W/?(?): at org.json.JSONObject.<init>(JSONObject.java:127)
?:??: W/?(?): at myapp.app.MainActivity$GetDeptAyncTask.parseJsonString(MainActivity.java:80)
答案 0 :(得分:1)
您可以使用java.net.URLDecoder
解码编码文本
URLDecoder.decode("%3FTYPE%3DleagueSearch%26JSON%3D1=%26SEARCH%3Dtest", "UTF-8")
将产生
?TYPE=leagueSearch&JSON=1=&SEARCH=test