はjavascriptのコードです:
text = '{"username":"Hello","password":"World"}';
x.open("POST", url);
x.setRequestHeader("Content-type", "application/json");
x.setRequestHeader("Content-length", text.length);
x.send(text);
、ここでは、私はアンドロイドのアプリケーションのために、これまで持っているものです
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
httppost.setHeader("Content-type", "application/json");
String text = "\"{\"username\":\"Hello\",\"password\":\"World\"}\"";
httppost.setHeader("Content-length",Integer.toString(text.length()));
httppost.setEntity(new StringEntity(text));
HttpResponse response = httpclient.execute(httppost);
このコードをeclipseでデバッグしようとすると、エミュレータはデバッガがハングしている間も実行を継続します。ありがとう!
注:httpclient.execute上のハング(httppost)
あなたは何行目に掛かっているのかを教えてください。 –
@KurtisNusbaum 2番目のスニペットの最後の行 –
インターネットへのエミュレータ接続を確認しましたか? –