当前位置:   article > 正文

solidity踩坑日记之java通过web3j调用智能合约传递数组参数的坑_java 调用 solidity合约接口

java 调用 solidity合约接口

最近在写solidity智能合约,用java与solidity交互过程中,需要传递数组参数到智能合约,但是用web3j转换后的数组参数去调用智能合约接口一直返回错误信息,在万能的互联网上翻阅了大量资料后,终于解决,在此记录一下:

首先java项目需要引入web3j的依赖包:

  1. <dependency>
  2. <groupId>org.web3j</groupId>
  3. <artifactId>core</artifactId>
  4. <version>4.5.18</version>
  5. <exclusions>
  6. <exclusion>
  7. <artifactId>okhttp</artifactId>
  8. <groupId>com.squareup.okhttp</groupId>
  9. </exclusion>
  10. </exclusions>
  11. </dependency>

合约demo代码如下:

  1. function arrTest(bytes32[] memory arr) public view returns(string memory) {
  2. return bytes32ToString(arr[0]);
  3. }
  4. function bytes32ToString(bytes32 bname) view public returns(string memory){
  5. // 此处要加上memory
  6. // 先将有效字符计算出来
  7. bytes memory bytesChar = new bytes(bname.length);
  8. uint charCount = 0;
  9. for(uint i = 0;i < bname.length; i++){
  10. bytes1 char = bname[i];
  11. if(char != 0){
  12. charCount++;
  13. }
  14. }
  15. // 新建数组,指定长度为有效字节长度
  16. bytes memory bytesName = new bytes(charCount);
  17. for(uint j = 0;j < charCount;j++){
  18. bytesName[j] = bname[j];
  19. }
  20. return string(bytesName);
  21. }

java调用合约方法代码如下:

  1. public static Bytes32 stringToBytes32(String string) {
  2. byte[] byteValue = string.getBytes();
  3. byte[] byteValueLen32 = new byte[32];
  4. System.arraycopy(byteValue, 0, byteValueLen32, 0, byteValue.length);
  5. return new Bytes32(byteValueLen32);
  6. }
  7. public RemoteCall<Utf8String> arrTest(List<String> data) {
  8. //首先把String转换成Bytes32
  9. Bytes32[] _dataBytes32 = new Bytes32[data.size()];
  10. List<Uint> _dataUint = new ArrayList<>();
  11. for(int i = 0 ; i < data.size() ; i++) {
  12. _dataBytes32[i] = stringToBytes32(data.get(i));
  13. }
  14. //需要使用DynamicArray 进行参数传递其他传递方式均出现错误 如: 直接传入参数dataBytes32 的数组,程序报错 ;List形式传参,程序报错
  15. DynamicArray<Bytes32> inputDataByte32 = new DynamicArray<Bytes32>(Bytes32.class , _dataBytes32);
  16. final Function function = new Function(
  17. "arrTest",
  18. Arrays.<Type>asList(
  19. //错误示例
  20. //dataBytes32
  21. //正确示例
  22. inputDataByte32
  23. ),
  24. Arrays.asList(
  25. new TypeReference<Utf8String>() {
  26. }
  27. )
  28. );
  29. return executeRemoteCallSingleValueReturn(function);
  30. }

通过各种尝试,发现java调用合约带数组的参数,需要用 DynamicArray 作为中转调用。

欢迎交流区块链问题,qq群组: 786937587

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/393575
推荐阅读
相关标签
  

闽ICP备14008679号