1

努力让任何东西在android上的web3j中工作,尝试这个例子(我已经替换了token和addr)我使用的地址确实有一些rinkeby ETH。在手机上测试,当我加载这个类/活动时应用程序崩溃,代码在 oncreate 方法中。在清单中打开互联网权限,并在 build gradle 中编译 android web3j。

 Web3j web3 = Web3jFactory.build(new 
 HttpService("https://rinkeby.infura.io/token"));

    EthGetBalance ethGetBalance = null;
    try {
        ethGetBalance = web3
                .ethGetBalance("addr",DefaultBlockParameterName.LATEST)
                .sendAsync()
                .get();
    } catch (InterruptedException e) {
        e.printStackTrace();
    } catch (ExecutionException e) {
        e.printStackTrace();
    }

    BigInteger wei = ethGetBalance.getBalance();

错误

06-30 02:15:47.115 18904-18904/? E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.test.user.test, PID: 18904
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.test.user.test/com.test.user.test.balance}: java.lang.NullPointerException
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2548)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2607)
    at android.app.ActivityThread.access$900(ActivityThread.java:174)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1325)
    at android.os.Handler.dispatchMessage(Handler.java:102)
    at android.os.Looper.loop(Looper.java:146)
    at android.app.ActivityThread.main(ActivityThread.java:5756)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:515)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1291)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1107)
    at dalvik.system.NativeStart.main(Native Method)
 Caused by: java.lang.NullPointerException
    at com.test.user.test.balance.onCreate(balance.java:43)
    at android.app.Activity.performCreate(Activity.java:5619)
    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2512)

错误引用的第 43 行是我提交的代码中的最后一行代码。当我注释掉该行应用程序时,它不会崩溃并且只会收到一些(我假设是全部)警告。

4

3 回答 3

6

您的 ethGetBalance 返回一个空值。我认为您输入的地址无效。这就是 web3j.ethGetBalance 方法失败的原因。用有效的地址试试这个。

    Web3j web3 = Web3jFactory.build(new HttpService("https://ropsten.infura.io/your-token"));

    String strAddress="0x24b********************"; //strAddress is your wallet address
    EthGetBalance ethGetBalance=
    web3.ethGetBalance(strAddress,DefaultBlockParameterName.LATEST).sendAsync().get();

    BigInteger wei = ethGetBalance.getBalance();

ethGetBalance.getBalance() 用于获取以 wei 为单位的以太币余额。要在您的钱包中获取实际令牌,请使用此转换方法。

  java.math.BigDecimal tokenValue = Convert.fromWei(String.valueOf(wei), Convert.Unit.ETHER);
  String strTokenAmount = String.valueOf(tokenValue);
于 2018-10-16T13:53:19.187 回答
0

问题是 ethGetBalance 为空,当您想要访问它时,因为方法 web3j.ethGetBalance 失败。

您正在发送“addr”作为地址,这不是有效的以太坊地址。

一个有效的以太坊地址具有类似的格式,以:0x 开头,然后有 40 个元素(数字 0-9 或字母 A 到 F)。要查看您的地址是否存在,只需尝试在网站https://etherscan.io/中查找即可

尝试使用正确的以太坊地址,它应该可以工作。

EthGetBalance ethGetBalance = web3j
                    .ethGetBalance(userAddress, DefaultBlockParameterName.LATEST)
                    .sendAsync()
                    .get();


BigInteger wei = ethGetBalance.getBalance();
于 2018-08-07T11:13:23.753 回答
0

ethGetBalance = web3.ethGetBalance(public_address, DefaultBlockParameterName.LATEST).sendAsync().get(); BigInteger wei = ethGetBalance.getBalance(); Log.e("以太余额", "wei" + wei); 这在我的应用程序中运行良好,可在 Playstore 上找到

https://play.google.com/store/apps/details?id=multi.erc20.devgenesis.token.wallet

于 2018-07-13T04:46:03.853 回答