Android 使用 Web 服务与 php-mysql 连接

发布于 2024-09-28 13:55:31 字数 380 浏览 5 评论 0原文

嘿伙计们,我正在 android 中开发最后一年的基于位置的项目(gps)。我必须使用 php 和 mysql 创建一个服务器,其中包含孟买重要医院的名称和位置(纬度和经度)。android 客户端应该是能够检索 mysql(外部)数据库中位置的纬度和经度,然后将其绘制在谷歌地图上。

ppl 建议我使用默认的 http 客户端与服务器(apache web 服务)进行通信...您能告诉我这是否可能吗?如果是,那么有人可以建议我一些学习客户端服务器的好教程(基础知识)吗在网络上使用apache(http客户端和http服务器)进行通信...如果可能的话,它在android中的实现(以便我可以在我的最终项目中使用它来连接到我的php-mysql服务器)....为了为了使其更有效率... 任何帮助将不胜感激......干杯

hey guys i am developing a final year location-based project(gps) in android.I have to create a server using php and mysql which contains name and location(in latitude and longitude) of important hospitals in Mumbai.The android client should be able to retrieve the the latitude and longitude of locations in mysql(external) database and then plot it on a google map.

ppl have suugested me to use default http client to communicate with server(apache web services)...Could u plzz tell me whether this is possible?If yes, then can someone plzz suggest me some good tutorials (basics)for learning client server communication using apache (http client and http server) on the web...and also if possible its implementation in android(so that i can use it in my final project to connect to my php-mysql server ) ....in order to make it more efficient...
Any help would be appreciated....cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无人接听 2024-10-05 13:55:31

如果你想保持简单,我的建议如下:

  • 设置HTTP服务器,使用PHP连接到MySQL数据库
  • 在PHP中实现Web界面,webService或JSON(我建议JSON,因为它更简单并且足以满足你的目的
  • 实现简单android 中的 http 客户端使用 REST 请求到服务器,
  • 使用 Jackson java JSON 库之类的东西解析 JSON 响应,
  • 记住要实现用户身份验证(例如使用 POST over HTTPS 的简单用户名/密码)

您可以轻松地在任何地方找到所有这些步骤的示例。

If you want to keep it simple my suggestion is the following:

  • setup HTTP server, use PHP to connect to MySQL db
  • implement web interface in PHP, either webService or JSON (I'd suggest JSON as it's simpler and sufficient for your purpose
  • implement simple http client in android using REST requests to the server
  • parse JSON response using something like the Jackson java JSON library
  • remember to implement user authentication (e.g. simple username/password using POST over HTTPS)

You can easily find examples for all these steps everywhere.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文