-2

我正在尝试执行一些发布请求,我审查了该网站,因为它有一些敏感数据。这是代码:

        HttpClient httpclient = new DefaultHttpClient();   
    HttpPost httppost = new HttpPost("http://www.someaddress.com"); 
        // Add your data   
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);   
        nameValuePairs.add(new BasicNameValuePair("sdata", ""));

        try {
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs,HTTP.UTF_8));
                Log.d("MyTag", "works till here.");
                try {
                    HttpResponse response = httpclient.execute(httppost);
                   // String responseBody = EntityUtils.toString(response.getEntity());
             //       Log.d("MyTag", responseBody);
                } catch (ClientProtocolException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }

它在那条线上崩溃:

  HttpResponse response = httpclient.execute(httppost);

这是对我来说真的什么都没说的logcat:http: //pastebin.com/F0YAiNLD

可能是什么问题呢?为什么会崩溃?我正在尝试将此 C# 代码翻译成 JAVA。C# 代码有效,但 JAVA 代码无效。

这是 C# 代码:

        System.Text.UTF8Encoding encoding=new System.Text.UTF8Encoding();
    string pData = "";
    byte[] sdata = encoding.GetBytes(pData);
    HttpWebRequest request = new HttpWebRequest(new Uri("http://www.someaddress.com"));
    request.ContentType="application/x-www-form-urlencoded";
    request.ContentLength = sdata.Length;
    Stream nStream=request.GetRequestStream();
    nStream.Write(sdata,0,sdata.Length);
    nStream.Close();
    HttpWebResponse response = 
    (HttpWebResponse) request.GetResponse();
4

1 回答 1

1

我不是 Android 开发人员,但在 Google 上对“Android NetworkOnMainThreadException”的简单搜索表明,当您尝试在主事件线程上执行网络操作时会引发此异常(名称非常自描述),而您应该在后台线程上进行这些类型的网络调用

通常在 GUI 应用程序中,在可能阻塞的主线程中执行工作(例如网络 HTTP 调用)是一个坏主意,因为它会阻塞主动画循环。

于 2012-09-26T18:21:02.317 回答