URLEncoder没有给出任何价值

时间:2015-11-05 06:23:53

标签: android url

这是我的代码:

 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());
        }

日志中没有关于它的条目。 甚至没有“数据:” 如果我的数据是空的那么我至少应该得到数据:作为我的日志输出

0 个答案:

没有答案