1. 程式人生 > >java為移動端寫介面開發例項

java為移動端寫介面開發例項

java作為一門後端語言,其厲害之處在於web,大家比較熟知的各種網路應用,java都能做,那麼在這個移動優先的時代,如何繼續發揮java的強大呢。通常是讓java作為一個app的服務端,為app客戶端提供資料,做業務邏輯,所以我們用java來寫介面,app客戶端訪問介面返回json檔案進行解析,最後實現業務邏輯。

而這種方式我們通常叫做restful。

restful是一種架構思想,是一位博士生在N年前發表的一篇博士生論文,其核心思想就是前後端分離,前端通過http請求,如www.xxxx.com/demo/username/password  來訪問後端的介面,然後後端將處理好的資料封裝為json返回,這樣,後端只需關注具體邏輯 提供介面,而前端只關心介面,提高了程式解耦性。 在移動優先的時代,restful極為重要。通常一套後臺可以讓多種終端訪問,包括移動端,pc端。     通過restful改進的mvc    在java中比較容易實現restful的是SpringMVC框架,他提供了一套下面是一個ios訪問我的java後臺demo,java後臺採用了springMVC和Hibernate。

//java端

package cotroller;

import java.util.HashMap;
import java.util.Map;
import java.util.List;

import javax.servlet.http.HttpServletRequest;

import jdk.nashorn.api.scripting.JSObject;
import model.Student;
import model.Teacher;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;



import dao.Get;
import dao.StudentDAO;

//登陸servlet
@Controller
public class LoginCotroller {  
  /**
   * 1. value="/doLogin/{username}/{password}" 攔截 xxx/doLogin/xx/xx
   * 2. @ResponseBody 使用此註解將返回資料型別封裝json
   * 3. @PathVariable("username") 擷取請求1.value中{username}的值
   * 4. Map<String, Object> 服務端將值放入map中再封裝為json,客戶端方便通過key取出value
   */
  
  StudentDAO studentDAO = new StudentDAO();//呼叫登陸判斷方法
  
  @RequestMapping(value="/doLogin/{username}/{password}",method=RequestMethod.GET)
  @ResponseBody
  public Map<String, Object> getTeacher(@PathVariable("username") Integer username, @PathVariable("password") String password){  
    System.out.println("攔截了客戶端json請求");
    Map<String, Object> map = new HashMap<String, Object>();
    
    if(studentDAO.loginByStudent(username, password)){
      System.out.println("密碼正確");
      map.put("result", "1");
      return map; //封裝為json返回給客戶端
    }
      
    System.out.println("密碼錯誤");
    map.put("result", "0");
    return map; //封裝為json返回給客戶端
  }

}

//ios端
#import <Foundation/Foundation.h>
#import <stdio.h>

int main(int argc, const char * argv[]) {
  @autoreleasepool {
  
    char oldUsername[128];
    char oldPassword[128];
    
    NSLog(@"請輸入使用者名稱 :");
    scanf("%s", oldUsername);
    NSString *username = [NSString stringWithUTF8String:oldUsername]; //轉換為NSString *
    NSLog(@"請輸入密碼 :");
    scanf("%s", oldPassword);
    NSString *password = [NSString stringWithUTF8String:oldPassword]; //轉換為NSString *
    
    //訪問springMVC後臺並解析返回的json資料
    //定義一個異常
    NSError *error;
    
    //定義請求action 使用stringWithFormat拼接字串
    NSString *url = [NSString stringWithFormat:@"http://154212l6t7.imwork.net:27063/partyOS_APP/doLogin/%@/%@", username, password];
    
    //載入一個NSURL物件
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
    
    //傳送請求 將請求的url資料放到NSData物件中
    NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
    
    //NSJSONSerialization從response請求中解析出資料放到字典中
    NSDictionary *jsonResult = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingMutableLeaves error:&error];
    
    NSString *resultValue = [jsonResult objectForKey:@"result"];
    
    NSLog(@"你的url是%@", url);
    NSLog(@"服務端返回值%@", resultValue);
    
    // oc字串比較方法 resultValue isEqualToString:@"1"] 和java 的equlse類似
    if([resultValue isEqualToString:@"1"]){
      NSLog(@"登入成功!");
    }else{
      NSLog(@"登入失敗,使用者名稱或密碼錯誤!");
    }
    
    
  }
  return 0;
}