这是我将文本上传到 PHP 文件然后到 MySQL 服务器的代码:
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("title", title));
params.add(new BasicNameValuePair("text", text));
params.add(new BasicNameValuePair("date", currentDate()));
params.add(new BasicNameValuePair("photoid", photoId()));
params.add(new BasicNameValuePair("latitude", latit));
params.add(new BasicNameValuePair("longitude", longi));
JSONObject json = jsonParser.makeHttpRequest(URL_UPLOAD,
"POST", params);
来自的代码EditText
是阿拉伯语,所以它可以在 MySQL 中工作。我可以添加阿拉伯语,它有效。我尝试手动从 PHP 添加到 MySQL 并且它有效。
因此,问题似乎是在 Android 应用程序的 PHP 文件中没有很好地接收文本。
在 MySQL 中,它的存储方式类似于?????
.