关于高版本web3j调用okhttp3.RequestBody.create(Ljava/lang/String;Lokhttp3/MediaType;)Lokhttp3/RequestBody异常

项目场景:

高版本web3j调用okhttp3.RequestBody.create(Ljava/lang/String;Lokhttp3/MediaType;)Lokhttp3/RequestBody异常


问题描述:

Exception in thread "main" java.lang.NoSuchMethodError: okhttp3.RequestBody.create(Ljava/lang/String;Lokhttp3/MediaType;)Lokhttp3/RequestBody;
	at org.web3j.protocol.http.HttpService.performIO(HttpService.java:154)
	at org.web3j.protocol.Service.send(Service.java:48)
	at org.web3j.protocol.core.Request.send(Request.java:87)
	at rpc.eth.rpc.Test.main(Test.java:32)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:567)
	at com.intellij.rt.execution.application.AppMainV2.main(AppMainV2.java:131)


原因分析:

查看RequestBody类,可以发现有一个参数类型相同,但是顺序不同的create方法, 那么有没有可能是web3j调用的为该方法?? 该方法的路径为 okhttp3.create():199行
public static ResponseBody create(@Nullable MediaType contentType, String content) {
    Charset charset = UTF_8;
    if (contentType != null) {
      charset = contentType.charset();
      if (charset == null) {
        charset = UTF_8;
        contentType = MediaType.parse(contentType + "; charset=utf-8");
      }
    }
    Buffer buffer = new Buffer().writeString(content, charset);
    return create(contentType, buffer.size(), buffer);
  }

解决方案:

1、将maven仓库中的jar修改之后重新编写,再将编译好的class替换到对应web3jb包目录即可。

关于高版本web3j调用okhttp3.RequestBody.create(Ljava/lang/String;Lokhttp3/MediaType;)Lokhttp3/RequestBody异常

2、更换okHttp版本应该可以解决该BUG, 但是由于我的项目一修改高版本的jar包项目就无法运行,无报错、无异常、无反应,所以使用了第一种方案(okHttp版本为:3.14.9)。
附注:编译好的[下载链接](http://study.bzdsg.com:1995/csdn/HttpService.class)
上一篇:FiddlerScript自动保存图片


下一篇:restful接口规范