- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于我的年终项目,我正在尝试使用 Android Studio 创建一个应用程序。我希望这个应用程序具有登录和注册功能,但我已经为此苦苦挣扎了好几个星期。我不知道如何将其连接到我的在线 mySQL 数据库(这对我来说更容易,因为我不想进入 mySQLite,因为我没有太多时间)到我的应用程序和能够将某些内容发送到该数据库中。就像注册时我不知道如何将信息发送到数据库,登录时我不知道如何获取这些信息。
到目前为止,我已经将 mySQL 数据库上线,并且编写了一些标准 PHP 代码来将给定信息(post 方法)添加到数据库中。我尝试了很多方法将 Android Studio 中的信息发送到该数据库,但似乎没有任何效果。我已经遵循了以下教程:
https://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/
https://www.youtube.com/watch?v=Wwh66xFRLwU
https://www.youtube.com/watch?v=QxffHgiJ64M&list=PLe60o7ed8E-TztoF2K3y4VdDgT6APZ0ka
还有一些我无法再找到的。我也通过 StackOverflow 进行了搜索,但似乎没有任何效果。现在我刚刚回到开始,我只是编辑了已转换为字符串的文本框,但我不知道如何将它们发送到我的 register.php 文件(并且我的互联网访问权限已在 list 中打开)。 xml)。我查找的所有内容似乎都已经过时了并且不起作用,我现在真的很绝望。
最佳答案
最好的方法是使用 Volley 库。 Volley 是一个 HTTP 库,它使 Android 应用程序的网络变得更容易,最重要的是,速度更快。
数据由 PHP 生成并使用 Json 数组传递。
您需要使用 Android 和 PHP 进行编程,并提供一个数据库表(示例中未提供 db 表)。未提供的还有一个名为 Constants.php 的包含数据库密码的 php 文件。
将 HTTP POST 变量发送到 PHP 服务器并获取包含 MySQL 数据的 JSON 数组作为响应。
特点当您按下“添加到 MYSQL”按钮时,将发送和接收数据。它将 POST 变量“name”和“role”发送到预定义的 HTTP URL(val url: String)响应以 JSONObject 数组形式返回到 val obj 中。该示例包含一个 JSONObject,其中一个条目包含 2 个变量“错误”和“消息”对于来自 MySQL 和 PHP 的更多行,您需要迭代 JSON 数组。VolleySingleton 还有有趣的图像加载器 ImageLoader。您可以跳过此功能当您想添加一行时,您可以从服务器调用类似:http://198.128.34.23/main.php?op=dbadd如果你想得到你调用http://198.128.34.23/main.php?op=dbget的东西
代码追踪-没有任何-尖端放线<uses-permission android:name="android.permission.INTERNET"/>
在AndroidManifest中
主 Activity 类
package com.stsu.phpjson
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import com.android.volley.*
import com.android.volley.toolbox.JsonObjectRequest
import com.android.volley.toolbox.StringRequest
import com.android.volley.toolbox.Volley
import kotlinx.android.synthetic.main.activity_main.*
import org.json.JSONObject
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
addMyBtn.setOnClickListener { addMySQL() }
}
private fun addMySQL() {
val url:String = "http://198.128.34.23/main.php?op=dbadd"
// val rq:RequestQueue=Volley.newRequestQueue(this)
val stringRequest = object: StringRequest(Request.Method.POST, url,
Response.Listener<String> { response ->
// Process the json
try {
val obj = JSONObject(response)
db_display.text = obj.getString("message")
}catch (e:Exception){
db_display.text = "Exception: $e"
}
}, Response.ErrorListener { error ->
db_display.text = error.message
}) {
@Throws(AuthFailureError::class)
override fun getParams(): Map<String, String>
{
val params = HashMap<String, String>()
params.put("name", "Maria24")
params.put("role", "Parthena243")
return params
}
}
// Add the volley post request to the request queue
VolleySingleton.getInstance(this).addToRequestQueue(stringRequest)
}
}
VolleySingleton 类
package com.stsu.phpjson
import android.app.Application
import android.content.Context
import android.graphics.Bitmap
import android.support.v4.util.LruCache
import com.android.volley.Request
import com.android.volley.RequestQueue
import com.android.volley.toolbox.ImageLoader
import com.android.volley.toolbox.Volley
class VolleySingleton constructor(context: Context)
{
companion object {
@Volatile
private var INSTANCE: VolleySingleton? = null
fun getInstance(context: Context) =
INSTANCE ?: synchronized(this) {
INSTANCE ?: VolleySingleton(context).also {
INSTANCE = it
}
}
}
val imageLoader: ImageLoader by lazy {
ImageLoader(requestQueue,
object : ImageLoader.ImageCache {
private val cache = LruCache<String, Bitmap>(20)
override fun getBitmap(url: String): Bitmap {
return cache.get(url)
}
override fun putBitmap(url: String, bitmap: Bitmap) {
cache.put(url, bitmap)
}
})
}
val requestQueue: RequestQueue by lazy {
// applicationContext is key, it keeps you from leaking the
// Activity or BroadcastReceiver if someone passes one in.
Volley.newRequestQueue(context.applicationContext)
}
fun <T> addToRequestQueue(req: Request<T>) {
requestQueue.add(req)
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/db_display"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.425"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.76" />
<Button
android:id="@+id/addMyBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:text="Add to MySQL"
app:layout_constraintStart_toStartOf="parent"
tools:layout_editor_absoluteY="266dp" />
</android.support.constraint.ConstraintLayout>
PHP-主文件.php
<?php
require_once 'DbOperation.php';
$response = array();
//// http://----Ur IP Address ---/heroapi/HeroApi/v1/?op=addheroes
if(isset($_GET['op'])){
switch($_GET['op']){
/// Check URL and testing API
/// Require POST
case 'dbadd':
if(isset($_POST['name']) && isset($_POST['role'])){
$db = new DbOperation();
if($db->createDemo($_POST['name'], $_POST['role'])){
$response['error'] = false;
$response['message'] = 'Artist added successfully';
}else{
$response['error'] = true;
$response['message'] = 'Could not add artist';
}
}else{
$response['error'] = true;
$response['message'] = 'Required Parameters are missing';
}
break;
////http:
//----FROM your IP Address
////Require GET
case 'dbget':
$db = new DbOperation();
$hero = $db->getDemo();
if(count($hero)<=0){
$response['error'] = true;
$response['message'] = 'Nothing found in the database';
}else{
$response['error'] = false;
$response['hero'] = $hero;
}
break;
case 'file':
if (isset($_FILES["uploaded_file"]["name"]))
{
$name = $_FILES["uploaded_file"]["name"];
$tmp_name = $_FILES["uploaded_file"]["error"];
$error = $_FILES["uploaded_file"]["error"];
if(!empty($name))
{
$location = './assets/';
if(!is_dir($location))
mkdir($location);
if (move_uploaded_file($tmp_name, $location. $name))
{
$response['error'] = false;
$response['message'] = 'Uploaded';
}
else {
$response['error'] = true;
$response['message'] = 'Upload failed';
}
}
else {
$response['error'] = true;
$response['message'] = 'Blank file';
}
}
else {
$response['error'] = true;
$response['message'] = 'NULL POST FILE';
}
break;
case 'filestr':
if (isset($_POST['imstr']) && isset($_POST['filename'])) {
$imstr = $_POST['imstr'];
$filename = $_POST['filename'];
$path = "./";
if (file_put_contents($path. $filename, base64_decode($imstr)) == TRUE) {
$response['error'] = false;
$response['message'] = 'Succesfully uploaded image';
}
else
{
$response['error'] = true;
$response['message'] = 'Server could not save: ';
}
} else {
$response['error'] = true;
$response['message'] = 'Null data received';
}
break;
default:
$response['error'] = true;
$response['message'] = 'No operation to perform';
}
}else{
$response['error'] = false;
$response['message'] = 'Invalid Request';
}
echo json_encode($response);
?>
PHP 包含文件(将其命名为 DbOperation.php )
<?php
class DbConnect
{
//Variable to store database link
private $con;
//Class constructor
function __construct()
{
}
//This method will connect to the database
function connect()
{
//Including the constants.php file to get the database constants
include_once dirname(__FILE__) . '/Constants.php';
//connecting to mysql database
$this->con = new mysqli(DB_HOST, DB_USERNAME, DB_PASSWORD, DB_NAME);
//Checking if any error occured while connecting
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
return null;
}
//finally returning the connection link
return $this->con;
}
}
?>
关于php - 最近如何将 Android Studio 与 mySQL 连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59340247/
我在 JavaScript 文件中运行 PHP,例如...... var = '';). 我需要使用 JavaScript 来扫描字符串中的 PHP 定界符(打开和关闭 PHP 的 )。 我已经知道使
我希望能够做这样的事情: php --determine-oldest-supported-php-version test.php 并得到这个输出: 7.2 也就是说,php 二进制检查 test.
我正在开发一个目前不使用任何框架的大型 php 站点。我的大问题是,随着时间的推移慢慢尝试将框架融入应用程序是否可取,例如在创建的新部件和更新的旧部件中? 比如所有的页面都是直接通过url服务的,有几
下面是我的源代码,我想在同一页面顶部的另一个 php 脚本中使用位于底部 php 脚本的变量 $r1。我需要一个简单的解决方案来解决这个问题。我想在代码中存在的更新查询中使用该变量。 $name)
我正在制作一个网站,根据不同的情况进行大量 PHP 重定向。就像这样...... header("Location: somesite.com/redirectedpage.php"); 为了安全起见
我有一个旧网站,我的 php 标签从 因为短标签已经显示出安全问题,并且在未来的版本中将不被支持。 关于php - 如何避免在 php 文件中写入
我有一个用 PHP 编写的配置文件,如下所示, 所以我想用PHP开发一个接口(interface),它可以编辑文件值,如$WEBPATH , $ACCOUNTPATH和 const值(value)观
我试图制作一个登录页面来学习基本的PHP,首先我希望我的独立PHP文件存储HTML文件的输入(带有表单),但是当我按下按钮时(触发POST到PHP脚本) )我一直收到令人不愉快的错误。 我已经搜索了S
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: What is the max key size for an array in PHP? 正如标题所说,我想知道
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我在 MySQL 数据库中有一个表,其中存储餐厅在每个工作日和时段提供的菜单。 表结构如下: i_type i_name i_cost i_day i_start i_
我有两页。 test1.php 和 test2.php。 我想做的就是在 test1.php 上点击提交,并将 test2.php 显示在 div 中。这实际上工作正常,但我需要向 test2.php
我得到了这个代码。我想通过textarea更新mysql。我在textarea中回显我的MySQL,但我不知道如何更新它,我应该把所有东西都放进去吗,因为_GET模式没有给我任何东西,我也尝试_GET
首先,我是 php 的新手,所以我仍在努力学习。我在 Wordpress 上创建了一个表单,我想将值插入一个表(data_test 表,我已经管理了),然后从 data_test 表中获取所有列(id
我有以下函数可以清理用户或网址的输入: function SanitizeString($var) { $var=stripslashes($var); $va
我有一个 html 页面,它使用 php 文件查询数据库,然后让用户登录,否则拒绝访问。我遇到的问题是它只是重定向到 php 文件的 url,并且从不对发生的事情提供反馈。这是我第一次使用 html、
我有一个页面充满了指向 pdf 的链接,我想跟踪哪些链接被单击。我以为我可以做如下的事情,但遇到了问题: query($sql); if($result){
我正在使用 从外部文本文件加载 HTML/PHP 代码 $f = fopen($filename, "r"); while ($line = fgets($f, 4096)) { print $l
我是一名优秀的程序员,十分优秀!