java jsonrpc2.0 客户端程序

本文介绍了一个使用Java实现的JSON-RPC客户端示例,该客户端通过调用远程服务器上的方法来展示其基本功能,包括字符串和整数类型的数据交互。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

源码

package congpq.jsonrpc_test;
import java.net.URL;
import com.googlecode.jsonrpc4j.JsonRpcHttpClient;
import static java.lang.System.*;


public class jsonrpc_test {
    public static void main(String[] args) throws Throwable{
        out.println("test111") ;

        JsonRpcHttpClient client = new JsonRpcHttpClient(new URL("http://192.168.56.100:8080"));

        String res = (String) client.invoke("add", new Object[] { "bob", "the builder" }, String.class);
        out.println(res);
         int  re = (int) client.invoke("add", new Object[] { 1 , 3 }, int.class);
        out.println(re);
    }
}

pom

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>groupId</groupId>
    <artifactId>JSONRPC_TEST</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>

        <!-- https://mvnrepository.com/artifact/com.github.briandilley.jsonrpc4j/jsonrpc4j -->
        <dependency>
            <groupId>com.github.briandilley.jsonrpc4j</groupId>
            <artifactId>jsonrpc4j</artifactId>
            <version>1.5.2</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>2.9.0</version>
        </dependency>

    </dependencies>
</project>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值