Java伺服器對外提供介面以及Android端向伺服器請求資料

來源:互聯網
上載者:User

標籤:

講解下java伺服器是如何對移動終端提供介面的,以什麼資料格式提供出去,移動端又是怎麼請求伺服器,接收以及解析返回資料的。

服務端:還是在原先S2SH架構的項目上(搭建SSH詳細步驟及其相關說明),加入Servlet來做對終端提供介面的事情。

Android端:用了一個網路訪問架構okHttp,向伺服器請求資料。

服務端:

servlet接收移動端的get、post請求,進行相應邏輯處理後將要返回的資料封裝成json格式寫出去。

對資料庫的操作傳統的Servlet是用jdbc,但是操作過於繁瑣,這裡重用項目中的Hibernate。那麼如何在Servlet中使用Hibernate呢?

Servlet是定義在web.xml中,在Servlet類中用new ClassPathXmlApplicationContext("applicationContext.xml");就可以得到Spring容器,從而可以取到Hibernate來操作資料庫了。

ApplicationContext ac=new ClassPathXmlApplicationContext("applicationContext.xml");UserDAO userDAO=(UserDAO) ac.getBean("UserDAO");List<User> userList=userDAO.findAll();

在使用Json時,必須要匯入的jar:

commons-beanutils-1.7.0.jar

commons-collections-3.2.1.jar

commons-httpclient-3.1.jar

commons-lang-2.3.jar

commons-logging-1.1.1.jar

ezmorph-1.0.3.jar

json-lib-2.2.3-jdk15.jar

UserServlet.java

package joanna.yan.servlet;import java.io.IOException;import java.io.PrintWriter;import java.util.List;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import joanna.yan.dao.UserDAO;import joanna.yan.entity.User;import net.sf.json.JSONArray;import net.sf.json.JSONObject;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class UserServlet extends HttpServlet{    @Override    protected void doGet(HttpServletRequest req, HttpServletResponse resp)            throws ServletException, IOException {        doPost(req, resp);    }        @Override    protected void doPost(HttpServletRequest req, HttpServletResponse resp)            throws ServletException, IOException {        System.out.println("被訪問了!");        PrintWriter out=resp.getWriter();        JSONObject json=new JSONObject();        JSONObject json1=new JSONObject();        String msg="success";        int errorcode=0;        ApplicationContext ac=new ClassPathXmlApplicationContext("applicationContext.xml");        try {            UserDAO userDAO=(UserDAO) ac.getBean("UserDAO");            List<User> userList=userDAO.findAll();            if(userList.size()>0){                JSONArray jsonArray=new JSONArray();                for (User user : userList) {                    json1.put("id", user.getId());                    json1.put("username", user.getUsername());                    json1.put("age", user.getUsername());                    jsonArray.add(json1);                }                json.put("data", jsonArray);            }else{                msg="沒有符合要求的資料";                errorcode=1;                json.put("data", "");            }        } catch (Exception e) {            e.printStackTrace();            msg = "系統錯誤";            errorcode = 10000;        }finally{            json.put("message", msg);            json.put("errorcode", errorcode);            out.print(json);            out.flush();            out.close();        }    }}

在web.xml中配置UserServlet

 <servlet>    <servlet-name>userServlet</servlet-name>    <servlet-class>joanna.yan.servlet.UserServlet</servlet-class>  </servlet>  <servlet-mapping>    <servlet-name>userServlet</servlet-name>    <url-pattern>/user</url-pattern>  </servlet-mapping>

Android端:

使用okhttp,在官網下載okhttp-2.7.0.jar和okio-1.6.0.jar放入libs下,並Add Build Path。同時添加解析json資料的gson-2.2.4.jar

MainActivity.java

package com.example.commussh;import java.io.IOException;import java.util.Map;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.TextView;import com.google.gson.Gson;import com.squareup.okhttp.OkHttpClient;import com.squareup.okhttp.Request;import com.squareup.okhttp.Response;public class MainActivity extends Activity {    TextView tv_show;    Button btn_search;    OkHttpClient client;    Gson gson;    static class Gist {        Map<String, GistFile> files;    }    static class GistFile {        String content;    }    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);                client= new OkHttpClient();        gson=new Gson();        tv_show=(TextView) findViewById(R.id.tv_show);        btn_search=(Button) findViewById(R.id.btn_search);        btn_search.setOnClickListener(new View.OnClickListener() {                        @Override            public void onClick(View v) {                new Thread(new Runnable() {                                        @Override                    public void run() {                        Request request = new Request.Builder()                        .url("http://localhost:8080/SSH/user")                        .build();                        Response response;                        try {                            response = client.newCall(request).execute();                            if (!response.isSuccessful()) throw new IOException("Unexpected code: " + response);                            Gist gist = gson.fromJson(response.body().charStream(), Gist.class);                            for (Map.Entry<String, GistFile> entry : gist.files.entrySet()) {                              System.out.println(entry.getKey());                              System.out.println(entry.getValue().content);                            }                        } catch (IOException e) {                            e.printStackTrace();                        }                    }                }).start();            }        });    }}

測試結果:

源碼:http://pan.baidu.com/s/1mgU7xKs   提取碼:pe9i

Java伺服器對外提供介面以及Android端向伺服器請求資料

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.