1

我正在开发 2 个相同的应用程序,它们需要将相同的字符串发送到 php 文件。当我在 PHP 中使用此代码进行检查时,iOs 是一个 GET。

file_put_contents('dump.txt', "POST: \n" . print_r($_POST, true) . "\n\n\n GET: \n" . print_r($_GET, true));

但是 Android 是一个 POST,但它们需要完全相同,因为我已经构建了 PHP 的一个工作部分,我不能再更改了。

这是我的安卓代码:

HttpClient httpclient = new DefaultHttpClient();
            HttpPost httpost = new HttpPost("http://Myserver.com/default.php");

            json = new JSONObject(); 
            try { 
                json.put("id", "69403"); 
                json.put("longitude", longi); 
                json.put("latitude", lat); 
                json.put("timestamp", time); 

            } catch (JSONException e) { 
            // TODO Auto-generated catch block 
            e.printStackTrace(); 
            } 

            /// create StringEntity with current json obejct 

            try { 
          //  StringEntity se = new StringEntity(json.toString()); 

                List <NameValuePair> nvps = new ArrayList <NameValuePair>();
                nvps.add(new BasicNameValuePair("data", json.toString()));
                httpost.setEntity(new UrlEncodedFormEntity(nvps, HTTP.UTF_8));


                System.out.println("send about to do post");
                try {
                    response = httpclient.execute(httpost);
                } catch (ClientProtocolException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                System.out.println("send post done");
                HttpEntity entity = response.getEntity();


            } catch (UnsupportedEncodingException e) { 
            // TODO Auto-generated catch block 
            e.printStackTrace(); 
            } 
4

2 回答 2

0

如果您收到NetworkOnMainThreadException,那是因为您正在尝试从主线程执行网络操作。如果是这样,请尝试查看AsyncTask

还要确保您在 android 清单中获得了 Internet 权限。

于 2013-01-04T11:36:26.187 回答
0

改变:

HttpPost httpost = new HttpPost("http://Myserver.com/default.php");

HttpGet httpget = new HttpGet("http://Myserver.com/default.php");
于 2013-01-04T11:24:15.890 回答