我在google app-engine上部署了一个应用程序。它有一个注册表单。 现在我已经在我的Android应用程序中创建了一个注册表单,我希望点击提交...它应该发送到谷歌应用程序引擎上的应用程序,它应该保存在特定的数据库...
有人告诉我使用http请求和响应方法,但我不知道那件事.. 有人可以给我提供一些示例代码或其他东西.....
... thanksss
答案 0 :(得分:13)
您尚未指定是否使用Python或Java。
您必须决定如何连接。在最简单的级别,您可以将数据发布到Google App Engine。在Java中,您将编写一个处理此问题的servlet。见Java EE tutorial。或者,您可以在服务器上编写Web服务(SOAP,RESTful),该服务处理从您的应用程序发送的数据。 Google和Google都有无数的例子。
假设我们正在走最简单的POST路线。所以在你的servlet(在GAE上运行)你会有这样的东西:
public void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
String value1 = request.getParameter("value1");
}
在你的Android应用程序中你会做类似的事情:
DefaultHttpClient hc=new DefaultHttpClient();
ResponseHandler <String> res=new BasicResponseHandler();
HttpPost postMethod=new HttpPost("http://mywebsite.com/mappedurl");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("value1", "Value my user entered"));
postMethod.setEntity(new UrlEncodedFormEntity(nameValuePairs));
String response=hc.execute(postMethod,res);
当然,servlet中的value1将设置为“我输入的用户值”。
编辑:Google现已发布了他们的Google Cloud Endpoints - 这使得在App Engine上构建RESTful服务并为Android创建客户端变得更加容易。它确实将你与App Engine联系起来 - 但是当然值得考虑。