我试图通过这个Android应用程序将纬度和经度的输出传递给MySQL数据库,但我不知道从哪里开始。
package com.example.gpstracking;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class AndroidGPSTrackingActivity extends Activity {
Button btnShowLocation;
// GPSTracker class
GPSTracker gps;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btnShowLocation = (Button) findViewById(R.id.btnShowLocation);
// show location button click event
btnShowLocation.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// create class object
gps = new GPSTracker(AndroidGPSTrackingActivity.this);
// check if GPS enabled
if(gps.canGetLocation()){
double latitude = gps.getLatitude();
double longitude = gps.getLongitude();
// \n is for new line
Toast.makeText(getApplicationContext(), "Your Location is - \nLat: " + latitude + "\nLong: " + longitude, Toast.LENGTH_LONG).show();
}else{
// can't get location
// GPS or Network is not enabled
// Ask user to enable GPS/network in settings
gps.showSettingsAlert();
}
}
});
}
}
答案 0 :(得分:0)
我不认为建立与mysql的直接连接是一个好主意(根本)。所以我建议做以下事情:
构建一个简单的 restful php应用程序,它将从您的Android应用程序作为 POST请求接收您的数据,然后将其存储到MySQL数据库中。
我认为这种组合会做得很好而且干净。
替代:如果您认为这是宁静的部分过度杀戮,您可以将此部分保留下来并使用简单的PHP脚本执行此操作。