简体   繁体   English

MySQL数据库连接

[英]MySQL db connection

I have been searching the web for a connection between my Android simulator and a MySQL db. 我一直在网上搜索Android模拟器和MySQL数据库之间的连接。
I've found that you can't connect directly but can via a web server. 我发现你不能直接连接,但可以通过网络服务器。 The web server will handle my request from my Android. Web服务器将处理我的Android请求。

I found the following code on Hello Android , but I don't understand. 我在Hello Android上找到了以下代码,但我不明白。 If I run this code on the simulator, nothing happens; 如果我在模拟器上运行此代码,则没有任何反应; the screen stays black. 屏幕保持黑色。 Where does Log.i land, in the Android screen, the error log, or somewhere else? Log.i在Android屏幕,错误日志或其他地方登陆的位置是什么?
Can somebody help me with this code? 有人可以帮我这个代码吗?

package app.android.ticket;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;


public class fetchData extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
  //call the method to run the data retreival
    getServerData();


}
public static final String KEY_121 = "http://www.jorisdek.nl/android/getAllPeopleBornAfter.php";

public fetchData() {
    Log.e("fetchData", "Initialized ServerLink ");
}

private void getServerData() {
    InputStream is = null;
    String result = "";

    //the year data to send
    ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
    nameValuePairs.add(new BasicNameValuePair("year","1980"));

    //http post
    try{
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost(KEY_121);
            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            HttpResponse response = httpclient.execute(httppost);
            HttpEntity entity = response.getEntity();
            is = entity.getContent();

    }catch(Exception e){
            Log.e("log_tag", "Error in http connection "+e.toString());
    }

    //convert response to string
    try{
            BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                    sb.append(line + "\n");
            }
            is.close();
            result=sb.toString();
    }catch(Exception e){
            Log.e("log_tag", "Error converting result "+e.toString());
    }
    //parse json data
    try{
            JSONArray jArray = new JSONArray(result);
            for(int i=0;i<jArray.length();i++){
                    JSONObject json_data = jArray.getJSONObject(i);
                    Log.i("log_tag","id: "+json_data.getInt("id")+
                            ", name: "+json_data.getString("name")+
                            ", sex: "+json_data.getInt("sex")+
                            ", birthyear: "+json_data.getInt("birthyear")
                    );
            }
    }catch(JSONException e){
            Log.e("log_tag", "Error parsing data "+e.toString());
    }

    }
}    

Logging messages go in the Log cat. 记录消息在Log cat中。 You could also use LogCat Reader . 您也可以使用LogCat Reader

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM