0

我试图通过这个 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();
            }

        }
    });
    }

}
4

1 回答 1

0

我不认为建立与 mysql 的直接连接是一个好主意(根本)。所以我建议做以下事情:

构建一个简单的php 应用程序,它将从您的 android 应用程序以 POST 请求的形式接收您的数据,然后将其存储到 MySQL 数据库中。

我认为这种组合会做得很好而且很干净。

替代方案:如果您认为这部分过于宁静,您可以忽略这部分并使用简单的 php 脚本来完成。

于 2013-10-21T23:20:13.600 回答