jsonrpc4j android,jsonrpc4j client使用实例

package com.jiepu.Jsonrpc4j.client;

import java.net.URL;

import com.googlecode.jsonrpc4j.JsonRpcHttpClient;

import com.googlecode.jsonrpc4j.ProxyUtil;

public class App {

public static void main(String[] args) throws Throwable {

test001();

test002();

}

private static void test001() throws Throwable {

// JsonRpcHttpClient client = new JsonRpcHttpClient(new

// URL("http://10.0.0.107/json_server/index.php"));

JsonRpcHttpClient client = new JsonRpcHttpClient(new URL(

"http://10.0.0.107/json_server/index.php"));

Student student = client.invoke("getstudent", new Object[] {new Student(2, "fuck", 65)}, Student.class);

System.out.println(student);

System.out.println(client.invoke("add", new Object[] {14,16}, Integer.class));

System.out.println(client.invoke("fuck", new Object[] {"java",14,16}, String.class));

}

private static void test002() throws Exception {

JsonRpcHttpClient client = new JsonRpcHttpClient(new URL(

"http://10.0.0.107/json_server/index.php"));

IMyService service = ProxyUtil.createClientProxy(new App().getClass()

.getClassLoader(), IMyService.class, client);

Student student = service.getstudent(new Student(12, "name", 63));

System.out.println(student);

System.out.println(service.add(15, 65));

System.out.println(service.fuck("xx中wen",45,6));

}

}

package com.jiepu.Jsonrpc4j.client;

public interface IMyService {

public Integer add(Integer a, Integer b) throws Exception ;

public String fuck(String str,Integer a, Integer b) throws Exception;

public Student getstudent(Student b) throws Exception;

}

package com.jiepu.Jsonrpc4j.client;

public class Student {

private Integer id;

private String name;

private Integer age;

public Student(){}

public Student(Integer id, String name, Integer age) {

super();

this.id = id;

this.name = name;

this.age = age;

}

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 Integer getAge() {

return age;

}

public void setAge(Integer age) {

this.age = age;

}

@Override

public String toString() {

return "Student [age=" + age + ", id=" + id + ", name=" + name + "]";

}

}

下载:

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

com.jiepu

Jsonrpc4j

0.0.1-SNAPSHOT

jar

Jsonrpc4j

http://maven.apache.org

UTF-8

junit

junit

3.8.1

test

com.github.briandilley.jsonrpc4j

jsonrpc4j

1.1

com.alibaba

fastjson

1.2.2

javax.servlet

javax.servlet-api

3.1-b06

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值