0

JSPページでJSTLを使用してxmlファイルを読み取っています

すべてが完璧に機能し、このコードを使用してファイルをループし、値を読み取ることができます

<x:forEach select="$resultatXML/users/user" var="user">
        <tr>
            <td><x:out select="$user/@num"></x:out></td>
            <td><x:out select="$user/name"></x:out></td>
            <td><x:out select="$user/credit"></x:out></td>
        </tr>   
    </x:forEach>

私が今欲しいのは、すべての行のすべての $user/credit の合計です。変数を設定しようとするとエラーが発生するため、実行できませんでした

<x:set var="credit" select="$user/credit" scope="page"/>
<c:out value="${pageScope.credit }"/>

それは私に与えます

[[credit: null]]

all i want now us すべてのクレジットの合計

4

1 に答える 1