这是我的代码:
try {
data = URLEncoder.encode("product_name", "utf-8")+"="+URLEncoder.encode(params[1], "utf-8");
data +="&"+URLEncoder.encode("product_price", "utf-8")+"="+URLEncoder.encode(params[2], "utf-8");
data+="&"+URLEncoder.encode("product_flag", "utf-8")+"="+URLEncoder.encode("2", "utf-8");
Log.d("Parth", "data"+data);
new Hiturl().execute(data,url);
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.d("Parth", "Error:"+e.getMessage());
}
日志中没有关于它的条目。 甚至没有“数据:” 如果我的数据是空的那么我至少应该得到数据:作为我的日志输出