有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

带流的java列表bean

我可以用Java流API重写以下代码吗

    List<ActionAttributeType> actionAttributeTypes = executeActionRsType.getBody().getActionAttributes();
    for (ActionAttributeType actionAttributeType : actionAttributeTypes) {
        if (actionAttributeType.getAttributeCode().equals("CONTRACTID")) {
            remoteBankingContractId = actionAttributeType.getAttributeValue();
            break;
        }
    }

共 (0) 个答案