3

所以我正在编写一个Android应用程序,其中一部分应该使用GPS来获取经度/纬度。这些值应该发布到我也在运行的 PHP 服务器上。我发布的功能如下:

public void doAll() {

Double locLat, locLon;
    try {
    locLat = locManager.getLastKnownLocation(locProvider).getLatitude();
    locLon = locManager.getLastKnownLocation(locProvider).getLongitude();
    } catch (NullPointerException e) {
    locLat = -1.0;
    locLon = -1.0;
    }
try {

    HttpClient client = new DefaultHttpClient();
    //we put all the parameters in the URL itself
    HttpPost request = new HttpPost("http://fatalatour.com/database.php?function=get_all&latitude="+Double.toString(locLat)+"&longitude="+Double.toString(locLon));

    ResponseHandler <String> responseHandler = new BasicResponseHandler();

   //List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
   //nameValuePairs.add(new BasicNameValuePair("latitude", Double.toString(locLat)));
   //nameValuePairs.add(new BasicNameValuePair("longitude", Double.toString(locLon)));
   //request.setEntity(new UrlEncodedFormEntity(nameValuePairs));

   String response = client.execute(request, responseHandler);
   Log.i("HOMI_RESPONSE", response.toString());

}

还有其他代码,但我相信这实际上会影响 locLat 和 locLon 的发布。

对于服务器端,我有:

function get_all() {
            $lat = trim($_GET['latitude']);
            $lon = trim($_GET['longitude']);
            // DEBUG
            $f = fopen('debug.log', 'a');
            fprintf($f, 'get_all: '.print_r($_REQUEST, true)."\n");
            $result = mysql_query("SELECT * FROM homi_table");

            $num = 0; //# of homicides

            while ($row = mysql_fetch_assoc($result)) {
                    $d = distance($row['latitude'], $row['longitude'], $lat, $lon, "K");
                    if ($d < 100) { //number to change for distance filter
                            $num += 1;
        echo "fatality:".$row['slug']."~".strtoupper($row['name']).", Age ".$row['age']."\n".$row['date']."\nhttp://projects.latimes.com/homicide/post/".$row['slug']."~".$row['latitude']."~".$row['longitude'];


                            // GH: limiting the number of results to 100
                            if ($num == 100) {
                                    break;
                            }
                    }
            };
            echo $num;
            fprintf($f, "get_all: returning: ".$num."\n");
    }

现在的问题似乎是 $lat 和 $lon 的处理。当我为 PHP 中的每个人硬编码一个静态数字时,该应用程序可以工作,但是当我将其保留为变量时(应该如此),它会失败。任何帮助将不胜感激!

4

2 回答 2

1

在 Android 应用程序中您使用 POST 请求,在 PHP 中您读取 GET 参数。我的脑海中没有别的东西。

于 2012-04-19T18:26:42.493 回答
0

您构建的 URL 看起来像 HTTP Get,而不是 Post。Post 会将数据发布在请求的正文中。

如果您不介意 URL 中公开的参数,我只需在 Android 代码中将 HTTPPost 更改为 HTTPGet。如果您不希望这些内容出现在 URL 中,则必须稍微修改 Android 帖子(我相信这类似于您注释掉的代码)并更改 php 代码以访问 $_POST 变量。

于 2012-04-19T19:00:51.663 回答