AccountBalanceQuery query = new AccountBalanceQuery()
.setAccountId(accountId);
//Sign with the operator private key and submit to a Hedera network
AccountBalance tokenBalance = query.execute(client);
System.out.println("The token balance(s) for this account: " +tokenBalance.tokens);