Closed GoogleCodeExporter closed 9 years ago
Accepted.
Original comment by tinyeeliu@gmail.com
on 24 Oct 2011 at 9:01
Before this feature is implemented, you can do this:
private void ajax_encoding(){
String url = "http://www.kyotojp.com/limousine-big5.html";
aq.ajax(url, byte[].class, this, "big5cb");
}
public void big5cb(String url, byte[] data, AjaxStatus status){
if(data != null){
String html = null;
try {
html = new String(data, "Big5");
} catch (UnsupportedEncodingException e) {
}
AQUtility.debug(html);
}
}
Original comment by tinyeeliu@gmail.com
on 24 Oct 2011 at 9:27
http://code.google.com/p/android-query/wiki/AsyncAPI?ts=1320931038&updated=Async
API#Encoding
Original comment by tinyeeliu@gmail.com
on 10 Nov 2011 at 1:22
Original issue reported on code.google.com by
kny.c...@gmail.com
on 22 Oct 2011 at 5:34