从MySQL进入android的访问表

时间:2016-02-16 13:41:35

标签: php android mysql

伙计们我想在不使用按钮的情况下将MySQL的值传递到我的应用程序中。我已经使用wampserver进行连接。然后,我按照本教程,创建php文件并在android studio中编写代码:https://www.youtube.com/watch?v=38HDyEUEpCw

但是,以下代码已弃用部分:

            HttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost("http://10.0.2.2/folder/getAllSensors.php");
            HttpResponse httpResponse = httpClient.execute(httpPost);
            HttpEntity httpEntity = httpResponse.getEntity();
            inputStream = httpEntity.getContent();

所以,我提到了这个链接:HttpEntity is deprecated on Android now, what's the alternative?

并用它编码:

public class LoginActivity extends Activity {
    TextView textElement;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);
        StrictMode.enableDefaults();
        textElement = (TextView) findViewById(R.id.textView);
        getData();
    }

1 个答案:

答案 0 :(得分:0)

在你的php文件中,你也在使用GET方法吗?在布局xml文件中,TextView是否具有此属性:android:text="textView"?如果它能够从php检索数据,请尝试检查每个jsonObject。您也可以发布您的PHP代码,以便我们也可以检查。