将数据从 android Studio 发送到网站(php)

Posted

技术标签:

【中文标题】将数据从 android Studio 发送到网站(php)【英文标题】:Send Data from android Studio to a website(php) 【发布时间】:2019-08-07 21:55:16 【问题描述】:

我正在设计一个收集用户信息的 android 应用,然后将数据传递给我也在设计的网站。然后网站应该对数据采取行动,一旦通过它应该将一些结果发送回应用程序。如何将应用程序收集的数据发送到我的网页?如何收听网站的回复?

例如 如何将此发送到网站 ID="234342 QuestionCode="92" TimeStamp="6757172787" 我使用 Webhost000 托管了网站。

到目前为止,我已经尝试过 https://***.com/a/29153585/11118152、https://***.com/a/29381874/11118152 以及其他 *** 答案,但它们都已被弃用。

我用来监听传入请求的 php 代码是这样的

<?php
 $Response = file_get_contents('php://input');
  $logFile = "Texttestresponse.txt";
  $log = fopen($logFile, "a");

$test = (string)$Response;

  fwrite($log, $test);
  fclose($log);
  ?>

【问题讨论】:

您能提供更多信息吗?您的 android 项目中包含哪些库?您在 Android Studio 中的请求处理程序是什么? @Martin Mbae 【参考方案1】:

如果您想将数据从您的 android 应用程序传递到您的网络服务器,您可以构建一个 RestFul API。

您可以使用 android 的“volley library”。

这里有一个教程链接:https://www.androidhive.info/2014/09/android-json-parsing-using-volley/

【讨论】:

我用过这个。谢谢。

以上是关于将数据从 android Studio 发送到网站(php)的主要内容,如果未能解决你的问题,请参考以下文章

无法使用 java 套接字将图像从 android studio 发送到 pc,filePath 返回 null

如何将数据从服务器发送到Android?

将文本字符串从 android 应用程序发送到网站上的表单?

如何使用 android 应用程序将数据发送到网站

使用 JSON 将数据从 mysql 显示到 android studio

JAVA Android Studio 不向 Firebase 实时数据库发送数据