下面的代码在android
中无效public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
HttpClient httpclient = new DefaultHttpClient();
String url = "";
url = "http://bouncemeinws.cloudapp.net/BounceMeInWebService.asmx/GetAllMerchantNotification";
String url1= "http://182.71.82.154/BounceMeInWS/BounceMeInWebService.asmx/GetAllMerchantNotification";
HttpPost httppost = new HttpPost(url);
try {
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("UserID", "130"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
System.out.println("status code--->"+ response.getStatusLine().getStatusCode());
// HttpEntity responseEntity = response.getEntity();
InputStream in = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
StringBuffer responseString = new StringBuffer("");
String line;
while ((line = reader.readLine()) != null) {
responseString.append(line + "\n");
}
System.out.println("response is -->" + responseString.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
Runtime Errorbody {font-family:“Verdana”; font-weight:normal; font-size:.7em; color:black;} p {font-family:“Verdana”; font-weight:normal; color:黑色; margin-top:-5px} b {font-family:“Verdana”; font-weight:bold;颜色:黑色; margin-top:-5px} H1 {font-family:“Verdana”; font-weight: normal; font-size:18pt; color:red} H2 {font-family:“Verdana”; font-weight:normal; font-size:14pt; color:maroon} pre {font-family:“Lucida Console”; font -size:.9em} .marker {font-weight:bold; color:black; text-decoration:none;}。version {color:gray;} .error {margin-bottom:10px;}。expandable {text-decoration:underline;字体重量:粗体;颜色:海军;光标:手; }
<!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration>
<!-- Web.Config Configuration File ->
<configuration> <system.web><customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/></system.web> </configuration>
答案 0 :(得分:0)