我是 android 开发新手,我在 android 上开发了一个应用程序,它有 3 个活动,除此之外,我还开发了一个 PHP 网站,该网站在 MySQL 上具有数据库。我想在android和PHP之间建立联系。我阅读了很多教程并根据使用 JSON Parser 进行连接,但我不工作。可以使用“ Web 服务”将客户端连接到服务器吗?“?现在我的项目的要求是我有一种客户注册表格,我想从中获取用户输入并保存在android数据库中的所有数据。我该怎么做?有没有可能在我的 android 应用程序中,我在其他活动中输入数据,它将保存在 MySql 数据库中。请提供帮助,因为我尝试了多种连接和获取数据的方法,但没有成功请指导从我的 PHP 应用程序中检索任务详细信息的可能方法.
问问题
2087 次
2 回答
2
您可以为您的 Web 应用程序创建一个解析 json、xml、csv 和许多其他类型的RESTFUL API 服务,然后您可以将其称为 android。
从android调用服务的方法之一是android query
于 2012-12-30T15:38:34.970 回答
0
这样做。
它可能对你有帮助。
title = spinnerTitle.getSelectedItem().toString();
firstName = editTextFirstName.getText().toString();
lastName = editTextLastName.getText().toString();
address1 = editTextAddress1.getText().toString();
adddress2 = editTextAddress2.getText().toString();
city = editTextCity.getText().toString();
county = editTextCounty.getText().toString();
postCode = editTextPostCode.getText().toString();
country = spinnerCountry.getSelectedItem().toString();
dayPhone = editTextDayPhone.getText().toString();
evePhone = editTextEvePhone.getText().toString();
String xml = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>"
+ "<users><Title>"+title+"</Title>"
+ "<FirstName>"+firstName+"</FirstName>"
+ "<LastName>"+lastName+"</LastName>"
+ "<Address1>"+address1+"</Address1>"
+ "<Address2>"+adddress2+"</Address2>"
+ "<LoginID>"+userId+"</LoginID>"
+ "<Password>"+password+"</Password>"
+ "<County>"+county+"</County>"
+ "<City>"+city+"</City>"
+ "<Country>"+country+"</Country>"
+ "<PostCode>"+postCode+"</PostCode>"
+ "<Email>"+email+"</Email>"
+ "<DayPhone>"+dayPhone+"</DayPhone>"
+ "<EvePhone>"+evePhone+"</EvePhone>" + "</users>";
serverCall(xml);
private void serverCall(final String xml )
{
ConnectivityManager conMan = ( ConnectivityManager ) getSystemService( Context.CONNECTIVITY_SERVICE );
if( conMan.getActiveNetworkInfo() != null && conMan.getActiveNetworkInfo().isConnected() )
{
result = new Connection().getResponse("http://localhost/registration.php" , xml);
if(result.equals("yes") {
//registration done
} else {
//failed
}
}
}
连接.java
public String getResponse(String connUrl, String xml) {
DefaultHttpClient httpClient = null;
try {
MultipartEntity mp = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
HttpPost method = new HttpPost(connUrl);
method.setEntity(mp);
mp.addPart("xml_request", new StringBody(xml));
httpClient = new DefaultHttpClient();
HttpResponse response = httpClient.execute(method);
if(response.getStatusLine().getStatusCode() == 200){
ByteArrayOutputStream outstream = new ByteArrayOutputStream();
response.getEntity().writeTo(outstream);
return outstream.toString();
}
}
catch(Exception e) {
Log.v("APP", "Exception while create connection for getResponse from server with: " + e.getMessage());
}
finally {
httpClient.getConnectionManager().shutdown();
}
return "";
}
于 2012-12-30T15:51:19.450 回答