Android采用GET方法进行网络传值

Android采用GET方法进行网络传值,第1张

概述前两天学习了使用GET方法来进行安卓与WEB的网络传值问题。 今天来说一下大概方法。

前两天学习了使用GET方法来进行安卓与WEB的网络传值问题。 

今天来说一下大概方法。

WEB应用

在这里,我只建立一个简单的Servlet,用来接收安卓端发来的信息。

package deu.hpu.servlet;   import java.io.IOException; import java.io.PrintWriter;   import javax.servlet.servletexception; import javax.servlet.http.httpServlet; import javax.servlet.http.httpServletRequest; import javax.servlet.http.httpServletResponse;   public class ManagerServlet extends httpServlet {   public voID doGet(httpServletRequest request,httpServletResponse response) throws servletexception,IOException {     String Title=request.getParameter("Title");     Title=new String(Title.getBytes("ISO8859-1"),"UTF-8");     String timelength=request.getParameter("timelength");     timelength=new String(timelength.getBytes("ISO8859-1"),"UTF-8");     System.out.println("视频名称"+Title);     System.out.println("时长"+timelength); }   public voID doPost(httpServletRequest request,IOException {  doGet(request,response); }   } 

 安卓客户端

在这里,我要建立一个输入框界面,让用户吧数据输入进去,然后我再将数据通过get方式提交。 
XML界面(两个输入框,一个按钮):

<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"   xmlns:tools="http://schemas.androID.com/tools"   androID:layout_wIDth="fill_parent"   androID:layout_height="fill_parent"   androID:orIEntation="vertical"   tools:context="com.example.newsmanager.MainActivity" >     <TextVIEw     androID:layout_wIDth="fill_parent"     androID:layout_height="wrap_content"     androID:text="@string/Title" />   <EditText      androID:layout_wIDth="fill_parent"     androID:layout_height="wrap_content"     androID:ID="@+ID/Title"/>      <TextVIEw     androID:layout_wIDth="fill_parent"     androID:layout_height="wrap_content"     androID:text="@string/timelength" />   <EditText      androID:layout_wIDth="fill_parent"     androID:layout_height="wrap_content"     androID:numeric="integer"     androID:ID="@+ID/timelength"/>"      <button      androID:layout_wIDth="wrap_content"     androID:layout_height="wrap_content"     androID:ID="@+ID/button"     androID:onClick="save"     androID:text="@string/button"     /> </linearLayout> 

之后我要在Activity里将界面的编辑框里面的值传到WEB端 

主Activity(这里的线程问题在前面讲过):

package com.example.newsmanager;   import com.example.service.NewsService;   import androID.app.Activity; import androID.os.Bundle; import androID.vIEw.VIEw; import androID.Widget.EditText; import androID.Widget.Toast;   public class MainActivity extends Activity {   private EditText Titletext;   private EditText lengthtext; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); Titletext=(EditText) findVIEwByID(R.ID.Title); lengthtext=(EditText) findVIEwByID(R.ID.timelength); } boolean flag;   public voID save(VIEw vIEw) throws Exception{     //开启线程     new Thread(new Runnable() {       String Title=Titletext.getText().toString();       String length=lengthtext.getText().toString(); @OverrIDe public voID run() { boolean result; try { result = NewsService.save(Title,length); if(result){ //返回主线程显示     runOnUiThread(new Runnable() { @OverrIDe public voID run() { Toast.makeText(getApplicationContext(),R.string.success,1).show(); } });        }else{      runOnUiThread(new Runnable() { @OverrIDe public voID run() { Toast.makeText(getApplicationContext(),R.string.error,1).show(); } });     } } catch (Exception e) { // Todo auto-generated catch block e.printstacktrace(); } } }).start();   } } 

上面代码中的NewsService类以及save方法(这个类是用来处理信息,然后以get方式传往WEB端)。这里我要说一句,我们采用的GET方法,是将需要传递给WEB端的数据放在URL路径,然后WEB端进行解析得到的,所以我们要在方法中将URL路径给拼凑完成然后传给WEB端(里面的IP是我tomcat服务器本机的ip)。

package com.example.service;   import java.net.httpURLConnection; import java.net.URL; import java.net.URLEncoder; import java.util.HashMap; import java.util.Map;   public class NewsService {   /*    * 保存数据    * Title 标题    * length 时长    * */ public static boolean save(String Title,String length) throws Exception{ String path="http://10.20.124.72:8080/vIDeonews/ManagerServlet"; Map<String,String> map=new HashMap<String,String>(); map.put("Title",Title); map.put("timelength",length); return sendGETRequest(path,map,"UTF-8"); }   /*    * 发送Get请求    * path请求路径    * map请求参数    * */ private static boolean sendGETRequest(String path,Map<String,String> map,String eCoding) throws Exception{ /*将路径拼成http://10.20.124.72:8080/vIDeonews/ManagerServlet?Title=XXX&timelength=90*/ StringBuilder url=new StringBuilder(path); url.append("?"); //map迭代器Entry<Key,Value> for(Map.Entry<String,String> entry:map.entrySet()){ url.append(entry.getKey()).append("=");       //eCoding是上面传来的“UTF-8”,为了防止中文乱码 url.append(URLEncoder.encode(entry.getValue(),eCoding)); url.append("&"); } url.deleteCharat(url.length()-1); URL url2=new URL(url.toString()); httpURLConnection conn=(httpURLConnection) url2.openConnection(); conn.setConnectTimeout(5000); conn.setRequestMethod("GET"); if(conn.getResponseCode() == 200){ return true; } return false; }   } 

上面如果传到WEB端是成功的(即conn.getResponseCode() = 200),那么安卓端就会显示“登陆成功”,而且在WEB编辑器的控制台会以System.out.println方式打印出你传去的信息。 

效果:

 


这里仅仅是一个传值的演示,没用用到数据库和输入输出流,真正做开发的时候这些东西是少不了的,所以要学会将东西结合起来应用。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的Android采用GET方法进行网络传值全部内容,希望文章能够帮你解决Android采用GET方法进行网络传值所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1143216.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存