溫馨提示×

溫馨提示×

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

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

Android中怎么搭建一個后端服務(wù)器

發(fā)布時間:2021-06-28 16:33:46 來源:億速云 閱讀:213 作者:Leah 欄目:移動開發(fā)

這篇文章將為大家詳細講解有關(guān)Android中怎么搭建一個后端服務(wù)器,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

首先我下載了一個myelipse應(yīng)為我們開發(fā)android的eclipse不能創(chuàng)建web project 要不然你去下載個插件也行,下載好以后創(chuàng)建web project會生成一個目錄,然后右鍵你的這個項目選擇myeclipse  -> add structs capabilities... 選擇2.1 finish  OK這樣就創(chuàng)建成功這個項目了,下面我貼出來我的項目樹供大家參考(感謝yayun0516 ,他的博文給了我很大的幫助,但是其中有些不足我已經(jīng)在下面改正了)

Android中怎么搭建一個后端服務(wù)器

下面配置structs.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
  <package name="struts2" extends="struts-default" namespace="/">
    <action name="getjson" class="com.shao.action.JSONAction"
      method="json">
      <result name="success">index.jsp</result>
    </action>
  </package>
</struts>

只有這一個需要配置,其他的在你添加struct的時候就會自動生成。下面創(chuàng)建類型文件

package com.shao.domain;

public class Music {  
  
  private Integer id;   
  private String name;   
  private String time;  
  private String author;  
  public Integer getId() {  
    return id;  
  }  
  public void setId(Integer id) {  
    this.id = id;  
  }  
  public String getName() {  
    return name;  
  }  
  public void setName(String name) {  
    this.name = name;  
  }  
  public String getTime() {  
    return time;  
  }  
  public void setTime(String time) {  
    this.time = time;  
  }  
  public String getAuthor() {  
    return author;  
  }  
  public void setAuthor(String author) {  
    this.author = author;  
  }   
}

然后再創(chuàng)建轉(zhuǎn)json的方法JSONAction:

package com.shao.action;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.util.ArrayList;
import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.ServletResponseAware;

import com.google.gson.Gson;
import com.opensymphony.xwork2.ActionSupport;
import com.shao.domain.Music;

public class JSONAction extends ActionSupport implements ServletRequestAware,
    ServletResponseAware {

  /** 
   *  
   */
  private static final long serialVersionUID = -3604892179657815531L;
  private HttpServletRequest request;
  private HttpServletResponse response;
  private String format;

  public String getFormat() {
    return format;
  }

  public void setFormat(String format) {
    this.format = format;
  }

  @Override
  public void setServletRequest(HttpServletRequest request) {
    this.request = request;
  }

  @Override
  public void setServletResponse(HttpServletResponse response) {
    this.response = response;
  }

  public void json() {
    List<Music> list = new ArrayList<Music>();
    Gson gson = new Gson();
    Music m1 = new Music();
    m1.setId(1);
    m1.setAuthor("周");
    m1.setName("外婆");
    m1.setTime("04:04");
    list.add(m1);
    Music m2 = new Music();
    m2.setId(2);
    m2.setAuthor("周杰倫");
    m2.setName("半獸人");
    m2.setTime("04:05");
    list.add(m2);
    Music m3 = new Music();
    m3.setId(3);
    m3.setAuthor("周杰倫");
    m3.setName("烏克麗麗");
    m3.setTime("02:55");
    list.add(m3);
    java.lang.reflect.Type type = new com.google.gson.reflect.TypeToken<List<Music>>() {
    }.getType(); // 指定type
    String beanListToJson = gson.toJson(list, type); // list轉(zhuǎn)換成json字符串
    System.out.println("GSON-->" + beanListToJson);
    try {
      response.setContentType("application/json; charset=GBK");
      response.setCharacterEncoding("UTF-8");
      this.response.getWriter().write(beanListToJson);
    } catch (IOException e) {
      e.printStackTrace();
    }
  }
}

 response.setContentType("application/json; charset=GBK");一定要注意,如果不加這句會在你請求服務(wù)器數(shù)據(jù)的時候,中文出現(xiàn)亂碼現(xiàn)象,同時在index.jsp中加入了contentType="text/html; charset=GBK"
還有不要忘了導(dǎo)入Gson包。

完了,就這樣服務(wù)器就完成了,下面運行一下 run as -> myeclipse service application 成功后會彈出一個框,上面寫著This is my JSP page.這就說明你已經(jīng)成功創(chuàng)建了服務(wù)器。

下面打開http://localhost:8080/Test2/getjson.action 下面就是服務(wù)器返回的內(nèi)容了。

基本就是這樣了,又不懂的可以問我。下面說android端的,更簡單了。

創(chuàng)建我們的項目然后加入xutils和gson包。

Android中怎么搭建一個后端服務(wù)器

這是一個新建的項目,在activity_main.xml中我給那個TextView添加了一個id

然后在MainActivity中實現(xiàn)如下:

package com.example.test2;

import com.lidroid.xutils.HttpUtils;
import com.lidroid.xutils.exception.HttpException;
import com.lidroid.xutils.http.ResponseInfo;
import com.lidroid.xutils.http.callback.RequestCallBack;
import com.lidroid.xutils.http.client.HttpRequest.HttpMethod;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;


public class MainActivity extends ActionBarActivity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final TextView text = (TextView) findViewById(R.id.text);
    HttpUtils httpUtils = new HttpUtils();
    httpUtils.send(HttpMethod.POST, "http://192.168.199.171:8080/Test2/getjson.action", new RequestCallBack<String>() {

      public void onFailure(HttpException arg0, String arg1) {
        Log.d("=====================onFailure", arg1+";"+arg0.toString());
        
      }

      public void onSuccess(ResponseInfo<String> arg0) {
        Log.d("=====================onSuccess", arg0.result);
        text.setText(arg0.result);
      }
    
      
    });
  }


  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
  }

  @Override
  public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    if (id == R.id.action_settings) {
      return true;
    }
    return super.onOptionsItemSelected(item);
  }
}

關(guān)于Android中怎么搭建一個后端服務(wù)器就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI