Android采用GET方法進行網(wǎng)絡(luò)傳值
前兩天學(xué)習(xí)了使用GET方法來進行安卓與WEB的網(wǎng)絡(luò)傳值問題。
今天來說一下大概方法。
WEB應(yīng)用
在這里,我只建立一個簡單的Servlet,用來接收安卓端發(fā)來的信息。
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);
}
}
安卓客戶端
在這里,我要建立一個輸入框界面,讓用戶吧數(shù)據(jù)輸入進去,然后我再將數(shù)據(jù)通過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端的數(shù)據(jù)放在URL路徑,然后WEB端進行解析得到的,所以我們要在方法中將URL路徑給拼湊完成然后傳給WEB端(里面的IP是我tomcat服務(wù)器本機的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 {
/*
* 保存數(shù)據(jù)
* title 標(biāo)題
* 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");
}
/*
* 發(fā)送Get請求
* path請求路徑
* map請求參數(shù)
* */
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是上面?zhèn)鱽淼摹癠TF-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方式打印出你傳去的信息。
效果:

這里僅僅是一個傳值的演示,沒用用到數(shù)據(jù)庫和輸入輸出流,真正做開發(fā)的時候這些東西是少不了的,所以要學(xué)會將東西結(jié)合起來應(yīng)用。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- 詳解Android中Application設(shè)置全局變量以及傳值
- Android 中兩個Activity 之間的傳值問題
- Android Activity的跳轉(zhuǎn)與傳值詳解
- Android編程使用WebView實現(xiàn)與Javascript交互的方法【相互調(diào)用參數(shù)、傳值】
- Android開發(fā)中Activity創(chuàng)建跳轉(zhuǎn)及傳值的方法
- Android編程之Application設(shè)置全局變量及傳值用法實例分析
- Android 多個Activity之間的傳值
- Android學(xué)習(xí)筆記--Activity中使用Intent傳值示例代碼
- Android學(xué)習(xí)筆記--使用剪切板在Activity中傳值示例代碼
- android中Intent傳值與Bundle傳值的區(qū)別詳解
相關(guān)文章
Android中多個ContentProvider的初始化順序詳解
在日常Android開發(fā)中經(jīng)常會寫一些sdk來供他人或者自己調(diào)用,一般這些sdk都涉及到初始化,下面這篇文章主要給大家介紹了關(guān)于Android中多個ContentProvider的初始化順序的相關(guān)資料,需要的朋友可以參考下2022-04-04
Android自定義控件(實現(xiàn)視圖樹繪制指示器)
本文主要介紹了Android視圖樹繪制指示器的實現(xiàn)原理和具體步驟。具有一定的參考價值,下面跟著小編一起來看下吧2017-01-01
Android DrawableTextView圖片文字居中顯示實例
在我們開發(fā)中,TextView設(shè)置Android:drawableLeft一定使用的非常多,但Drawable和Text同時居中顯示可能不好控制,小編想到通過自定義TextView實現(xiàn),具體詳情大家參考下本文2017-03-03
Android Studio導(dǎo)入Eclipse項目的兩種方法
本文主要介紹了Android Studio導(dǎo)入Eclipse項目的兩種方法。具有一定的參考價值,下面跟著小編一起來看下吧2017-01-01
60條Android開發(fā)注意事項與經(jīng)驗總結(jié)
我們在Android App開發(fā)過程中總結(jié)了60條技術(shù)經(jīng)驗注意事項,大家在開發(fā)過程中一定要注意,下面我們來詳細說一下這60條經(jīng)驗2018-03-03
Android中FileProvider的各種場景應(yīng)用詳解
這篇文章主要為大家介紹了Android中FileProvider的各種場景應(yīng)用詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2022-09-09
在Android開發(fā)中替換資源圖片不起作用的解決方法
這篇文章主要介紹了在Android開發(fā)中替換資源圖片不起作用的解決方法,需要的朋友可以參考下2014-07-07

