【问题标题】:Sending Data from Android App to Php将数据从 Android 应用程序发送到 PHP
【发布时间】:2015-04-11 07:06:29
【问题描述】:

我有一个在本地网络上的 WAMP 服务器中运行的 php 表单......但是当我尝试运行该文件时,它给了我屏幕截图中的错误。我正在尝试将数据从我的 Android 应用程序发送到 Php 表单。此外,我的 Android 应用程序在按下“发送”按钮时崩溃

我已经确定了:

  1. WAMP 和 Android 应用都在同一个网络上
  2. 我也尝试从安卓浏览器直接访问 URL,它会打开页面,所以 URL 应该不是问题
  3. 我试过用真机,还是一样的错误。
  4. 我还在 Android Manifest 中添加了 INTERNET 权限!

PHP 代码:

<?php
// get the "message" variable from the post request
// this is the data coming from the Android app
$message=$_POST["message"]; 
// specify the file where we will save the contents of the variable message
$filename="androidmessages.html";
// write (append) the data to the file
file_put_contents($filename,$message."<br />",FILE_APPEND);
// load the contents of the file to a variable
$androidmessages=file_get_contents($filename);
// display the contents of the variable (which has the contents of the file)
echo $androidmessages;
?>

这是 Android 应用程序代码:

public class HelloWorldActivity extends Activity {

    Button sendButton;

    EditText msgTextField;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        // load the layout
        setContentView(R.layout.main);        

        // make message text field object
        msgTextField = (EditText) findViewById(R.id.msgTextField);
        // make send button object
        sendButton = (Button) findViewById(R.id.sendButton);

    }

    // this is the function that gets called when you click the button
    public void send(View v)
    {
        // get the message from the message text box
        String msg = msgTextField.getText().toString();  

        // make sure the fields are not empty
        if (msg.length()>0)
        {
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost("http://192.168.0.40/yourPhpScript.php");
         try {
           List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
           nameValuePairs.add(new BasicNameValuePair("id", "12345"));
           nameValuePairs.add(new BasicNameValuePair("message", msg));
           httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
           httpclient.execute(httppost);
           msgTextField.setText(""); // clear text box
         } catch (ClientProtocolException e) {
             // TODO Auto-generated catch block
         } catch (IOException e) {
             // TODO Auto-generated catch block
         }

        }
        else
        {
            // display message if text fields are empty
            Toast.makeText(getBaseContext(),"All field are required",Toast.LENGTH_SHORT).show();
        }

    }
}

编辑 1:这是原始代码所要求的 LogCat

02-10 23:44:06.570: D/dalvikvm(1919): Not late-enabling CheckJNI (already on)
02-10 23:44:06.720: D/dalvikvm(1919): GC_CONCURRENT freed 73K, 10% free 2785K/3092K, paused 13ms+0ms, total 16ms
02-10 23:44:07.550: D/gralloc_goldfish(1919): Emulator without GPU emulation detected.
02-10 23:44:17.428: D/AndroidRuntime(1919): Shutting down VM
02-10 23:44:17.428: W/dalvikvm(1919): threadid=1: thread exiting with uncaught exception (group=0xb0f3e648)
02-10 23:44:17.428: E/AndroidRuntime(1919): FATAL EXCEPTION: main
02-10 23:44:17.428: E/AndroidRuntime(1919): java.lang.IllegalStateException: Could not execute method of the activity
02-10 23:44:17.428: E/AndroidRuntime(1919):     at android.view.View$1.onClick(View.java:3633)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at android.view.View.performClick(View.java:4240)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at android.view.View$PerformClick.run(View.java:17721)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at android.os.Handler.handleCallback(Handler.java:730)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at android.os.Handler.dispatchMessage(Handler.java:92)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at android.os.Looper.loop(Looper.java:137)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at android.app.ActivityThread.main(ActivityThread.java:5103)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at java.lang.reflect.Method.invokeNative(Native Method)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at java.lang.reflect.Method.invoke(Method.java:525)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at dalvik.system.NativeStart.main(Native Method)
02-10 23:44:17.428: E/AndroidRuntime(1919): Caused by: java.lang.reflect.InvocationTargetException
02-10 23:44:17.428: E/AndroidRuntime(1919):     at java.lang.reflect.Method.invokeNative(Native Method)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at java.lang.reflect.Method.invoke(Method.java:525)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at android.view.View$1.onClick(View.java:3628)
02-10 23:44:17.428: E/AndroidRuntime(1919):     ... 11 more
02-10 23:44:17.428: E/AndroidRuntime(1919): Caused by: android.os.NetworkOnMainThreadException
02-10 23:44:17.428: E/AndroidRuntime(1919):     at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1133)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at libcore.io.BlockGuardOs.connect(BlockGuardOs.java:84)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at libcore.io.IoBridge.connectErrno(IoBridge.java:127)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at libcore.io.IoBridge.connect(IoBridge.java:112)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:192)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:459)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at java.net.Socket.connect(Socket.java:842)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at org.apache.http.conn.scheme.PlainSocketFactory.connectSocket(PlainSocketFactory.java:119)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:144)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:360)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:465)
02-10 23:44:17.428: E/AndroidRuntime(1919):     at com.diwesh.helloworldactivity.HelloWorldActivity.send(HelloWorldActivity.java:73)
02-10 23:44:17.428: E/AndroidRuntime(1919):     ... 14 more

编辑 2:从推荐代码更改后的 LogCat

02-11 19:28:35.991: D/AndroidRuntime(1945): Shutting down VM
02-11 19:28:35.991: W/dalvikvm(1945): threadid=1: thread exiting with uncaught exception (group=0xb0f16648)
02-11 19:28:35.991: E/AndroidRuntime(1945): FATAL EXCEPTION: main
02-11 19:28:35.991: E/AndroidRuntime(1945): java.lang.IllegalStateException: Could not execute method of the activity
02-11 19:28:35.991: E/AndroidRuntime(1945):     at android.view.View$1.onClick(View.java:3633)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at android.view.View.performClick(View.java:4240)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at android.view.View$PerformClick.run(View.java:17721)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at android.os.Handler.handleCallback(Handler.java:730)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at android.os.Handler.dispatchMessage(Handler.java:92)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at android.os.Looper.loop(Looper.java:137)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at android.app.ActivityThread.main(ActivityThread.java:5103)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at java.lang.reflect.Method.invokeNative(Native Method)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at java.lang.reflect.Method.invoke(Method.java:525)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at dalvik.system.NativeStart.main(Native Method)
02-11 19:28:35.991: E/AndroidRuntime(1945): Caused by: java.lang.reflect.InvocationTargetException
02-11 19:28:35.991: E/AndroidRuntime(1945):     at java.lang.reflect.Method.invokeNative(Native Method)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at java.lang.reflect.Method.invoke(Method.java:525)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at android.view.View$1.onClick(View.java:3628)
02-11 19:28:35.991: E/AndroidRuntime(1945):     ... 11 more
02-11 19:28:35.991: E/AndroidRuntime(1945): Caused by: android.os.NetworkOnMainThreadException
02-11 19:28:35.991: E/AndroidRuntime(1945):     at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1133)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at libcore.io.BlockGuardOs.connect(BlockGuardOs.java:84)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at libcore.io.IoBridge.connectErrno(IoBridge.java:127)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at libcore.io.IoBridge.connect(IoBridge.java:112)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:192)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:459)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at java.net.Socket.connect(Socket.java:842)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at org.apache.http.conn.scheme.PlainSocketFactory.connectSocket(PlainSocketFactory.java:119)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:144)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:360)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:465)
02-11 19:28:35.991: E/AndroidRuntime(1945):     at com.diwesh.helloworldactivity.HelloWorldActivity.send(HelloWorldActivity.java:93)
02-11 19:28:35.991: E/AndroidRuntime(1945):     ... 14 more

【问题讨论】:

  • 使用AsyncTask 将数据发布到服务器
  • @ρяσѕρєяK:感谢您的建议。但我想知道我哪里出错了
  • 如果应用程序崩溃然后添加带有问题的 logcat 结果以检查问题出在哪里

标签: php android wamp wampserver


【解决方案1】:

首先,确保您的 PHP 脚本是正确的。 然后,删除按钮的 XML 配置中的“onClick”。 使用下面的代码。它会工作的

public class HelloWorldActivity extends Activity {

    Button sendButton;

    EditText msgTextField;

    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // load the layout
        setContentView(R.layout.main);

        // make message text field object
        msgTextField = (EditText) findViewById(R.id.msgTextField);
        // make send button object
        sendButton = (Button) findViewById(R.id.sendButton);

        sendButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // check for empty message
                if (msgTextField.getText().toString().trim().length() > 0) {
                    new sendMessage().execute();
                } else {
                    // display message if text fields are empty
                    Toast.makeText(HelloWorldActivity.this, "All field are required", Toast.LENGTH_SHORT).show();
                }
            }
        });

    }

    private class sendMessage extends AsyncTask<String, String, String> {

        ProgressDialog dialog;

        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            dialog = new ProgressDialog(HelloWorldActivity.this);
            dialog.setIndeterminate(true);
            dialog.setMessage("Sending Message...");
            dialog.setCancelable(false);
            dialog.show();

        }

        @Override
        protected String doInBackground(String... params) {


            // get the message from the message text box
            String msg = msgTextField.getText().toString();

            // desired URL
            final String mURL = "http://192.168.0.40/yourPhpScript.php";

            // Create a new HttpClient and Post Header
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost(mURL);
            HttpResponse response;

            // Add data
            List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();

            nameValuePairs.add(new BasicNameValuePair("id", "12345"));
            nameValuePairs.add(new BasicNameValuePair("message", msg));


            try {
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                response = httpclient.execute(httppost);
                String responseBody = EntityUtils
                        .toString(response.getEntity());
                Log.d("Http Post Response:", responseBody);

            } catch (ClientProtocolException e) {
                // TODO Auto-generated catch block
            } catch (IOException e) {
                // TODO Auto-generated catch block
            }
            return null;
        }

        @Override
        protected void onPostExecute(String s) {
            super.onPostExecute(s);
            dialog.dismiss();

            // Toast user for a successful operation
            Toast.makeText(HelloWorldActivity.this, "Message sent successfully", Toast.LENGTH_LONG).show();

            // clear text box
            msgTextField.setText("");

        }
    }


}

【讨论】:

    【解决方案2】:

    我认为这应该适合你,将你的 android 代码中的 http 请求更改为这个,

      private void startHttpRequest()
      {
        try
        {
           new Thread(new Runnable() 
           {
               public void run() 
               {
    
                 // get the message from the message text box
                 String msg = msgTextField.getText().toString();  
    
                 // make sure the fields are not empty
                 if (msg.length()>0)
                 {
                   HttpClient httpclient = new DefaultHttpClient();
                   HttpPost httppost = new                   HttpPost("http://192.168.0.40/yourPhpScript.php");
                   try 
                   {
                     StringEntity se = new StringEntity("id=12345&message="+msg);
                     httppost.setEntity(se);
                     HttpResponse response = httpclient.execute(httppost);
                     msgTextField.setText(""); // clear text box
    
                   StatusLine statusLine = response.getStatusLine();
                   if(statusLine.getStatusCode() == HttpStatus.SC_OK)
                   {
                     ByteArrayOutputStream out = new ByteArrayOutputStream();
                     response.getEntity().writeTo(out);
    
                    //* this should be the return from your php script  $androidmessages
                     String responseString = out.toString(); 
                     out.close();
                   }
                   } 
                   catch (ClientProtocolException e) 
                   {
                       // TODO Auto-generated catch block
                   } 
                   catch (IOException e) {
                       // TODO Auto-generated catch block
                   }
                 }
               }
           }).start();
    
        }
        catch(Exception e)
        {
        }
      }
    

    然后将你的php脚本中的代码改成这个,

    <?php
    // get the "message" variable from the post request
    // this is the data coming from the Android app
    $id=$_REQUEST["id"]; 
    $message=$_REQUEST["message"]; 
    // specify the file where we will save the contents of the variable message
    $filename="androidmessages.html";
    // write (append) the data to the file
    file_put_contents($filename,$message."<br />",FILE_APPEND);
    // load the contents of the file to a variable
    $androidmessages=file_get_contents($filename);
    // display the contents of the variable (which has the contents of the file)
    echo $androidmessages;
    ?>
    

    【讨论】:

    • 谢谢我正在尝试你的代码,但是我需要导入什么库才能使“response.getStatusLine()”工作......它说响应无法解决
    • 抱歉耽搁了,我的答案在项目上丢失,让我修复它,应该可以回答您的问题
    • 谢谢,我会检查并回复您...我是否应该在同一目录中创建一个名为“androidmessages.html”的文件?或者如果找不到它会为我创建吗?另外,如果我创建它,是否需要在其中包含一些 html 代码或将其保存为空白?
    • 应用仍然崩溃,因为http请求代码需要在线程中运行,不能在主线程中运行。我将修改示例以包括如何将代码放入线程中。关于你的第一个问题,file_put_content 会创建文件,如果文件不存在,它需要在 php 代码的同一目录下。
    猜你喜欢
    • 2016-03-30
    • 2017-01-25
    • 1970-01-01
    • 1970-01-01
    • 2023-03-13
    • 1970-01-01
    • 2011-11-13
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多