91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中怎么利用GET方法實現網絡傳值

發布時間:2021-06-27 15:32:23 來源:億速云 閱讀:113 作者:Leah 欄目:移動開發

本篇文章給大家分享的是有關Android中怎么利用GET方法實現網絡傳值,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

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, HttpServletResponse response) 
throws ServletException, 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方法實現網絡傳值,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武清区| 辽宁省| 临沧市| 宜黄县| 阿尔山市| 东方市| 中卫市| 蒲城县| 科尔| 西丰县| 新源县| 铁力市| 吉首市| 桂林市| 丰镇市| 吉水县| 忻城县| 甘洛县| 阿勒泰市| 延吉市| 玉环县| 越西县| 郁南县| 慈利县| 江口县| 文登市| 霍山县| 博湖县| 大埔县| 邹平县| 孝义市| 巴楚县| 衡阳县| 康保县| 宾阳县| 观塘区| 嘉善县| 怀集县| 高碑店市| 神农架林区| 大港区|