溫馨提示×

溫馨提示×

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

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

利用java怎么為移動(dòng)端寫接口

發(fā)布時(shí)間:2020-12-02 16:25:25 來源:億速云 閱讀:159 作者:Leah 欄目:編程語言

本篇文章為大家展示了利用java怎么為移動(dòng)端寫接口,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

java作為一門后端語言,其厲害之處在于web,大家比較熟知的各種網(wǎng)絡(luò)應(yīng)用,java都能做,那么在這個(gè)移動(dòng)優(yōu)先的時(shí)代,如何繼續(xù)發(fā)揮java的強(qiáng)大呢。通常是讓java作為一個(gè)app的服務(wù)端,為app客戶端提供數(shù)據(jù),做業(yè)務(wù)邏輯,所以我們用java來寫接口,app客戶端訪問接口返回json文件進(jìn)行解析,最后實(shí)現(xiàn)業(yè)務(wù)邏輯。

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

restful是一種架構(gòu)思想,是一位博士生在N年前發(fā)表的一篇博士生論文,其核心思想就是前后端分離,前端通過http請求,如www.xxxx.com/demo/username/password  來訪問后端的接口,然后后端將處理好的數(shù)據(jù)封裝為json返回,這樣,后端只需關(guān)注具體邏輯 提供接口,而前端只關(guān)心界面,提高了程序解耦性。 在移動(dòng)優(yōu)先的時(shí)代,restful極為重要。通常一套后臺(tái)可以讓多種終端訪問,包括移動(dòng)端,pc端。     通過restful改進(jìn)的mvc    在java中比較容易實(shí)現(xiàn)restful的是SpringMVC框架,他提供了一套下面是一個(gè)ios訪問我的java后臺(tái)demo,java后臺(tái)采用了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 使用此注解將返回?cái)?shù)據(jù)類型封裝json
   * 3. @PathVariable("username") 截取請求1.value中{username}的值
   * 4. Map<String, Object> 服務(wù)端將值放入map中再封裝為json,客戶端方便通過key取出value
   */
  
  StudentDAO studentDAO = new StudentDAO();//調(diào)用登陸判斷方法
  
  @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("密碼錯(cuò)誤");
    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]; //轉(zhuǎn)換為NSString *
    NSLog(@"請輸入密碼 :");
    scanf("%s", oldPassword);
    NSString *password = [NSString stringWithUTF8String:oldPassword]; //轉(zhuǎn)換為NSString *
    
    //訪問springMVC后臺(tái)并解析返回的json數(shù)據(jù)
    //定義一個(gè)異常
    NSError *error;
    
    //定義請求action 使用stringWithFormat拼接字符串
    NSString *url = [NSString stringWithFormat:@"http://154212l6t7.imwork.net:27063/partyOS_APP/doLogin/%@/%@", username, password];
    
    //加載一個(gè)NSURL對象
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
    
    //發(fā)送請求 將請求的url數(shù)據(jù)放到NSData對象中
    NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
    
    //NSJSONSerialization從response請求中解析出數(shù)據(jù)放到字典中
    NSDictionary *jsonResult = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingMutableLeaves error:&error];
    
    NSString *resultValue = [jsonResult objectForKey:@"result"];
    
    NSLog(@"你的url是%@", url);
    NSLog(@"服務(wù)端返回值%@", resultValue);
    
    // oc字符串比較方法 resultValue isEqualToString:@"1"] 和java 的equlse類似
    if([resultValue isEqualToString:@"1"]){
      NSLog(@"登錄成功!");
    }else{
      NSLog(@"登錄失敗,用戶名或密碼錯(cuò)誤!");
    }
    
    
  }
  return 0;
}

上述內(nèi)容就是利用java怎么為移動(dòng)端寫接口,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

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

AI