jsonrpc4j android,jsonrpc4j client使用实例

戚俊美
2023-12-01

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

 类似资料: