Action和Jsp获取迭代器并显示它

发布于 2024-07-09 07:57:48 字数 1130 浏览 7 评论 0原文

这是我的操作类

public Iterator<CgConsultant> getSearchresult() {

        List<CgConsultant> list =userSearch.getConsultantMatches(searchstring);
        System.out.println("The size of the resutl list:"+list.size());
        Iterator<CgConsultant> iterator = list.iterator();
        CgConsultant obj;
        while(iterator.hasNext()){
            obj = (CgConsultant)iterator.next();
            System.out.println(obj.getUsername());
            System.out.println(obj.getFirstName());
            System.out.println(obj.getLastName());
        }
        return iterator;
    }

,我必须在 jsp 中填充数据并将其显示在 jsp 中,

我得到返回状态,但如何填充数据并显示它..

这是我的 jsp

<head>
    <title><fmt:message key="signup.title"/></title>
    <meta name="heading" content="<fmt:message key='signup.heading'/>"/>
</head>

<body>

        <h1> Search Complete</h1>
        <h2> Details are..</h2><br>

        <s:property value="Searchresult"/>

</body>
</html>

请指定任何建议..

This is my action class

public Iterator<CgConsultant> getSearchresult() {

        List<CgConsultant> list =userSearch.getConsultantMatches(searchstring);
        System.out.println("The size of the resutl list:"+list.size());
        Iterator<CgConsultant> iterator = list.iterator();
        CgConsultant obj;
        while(iterator.hasNext()){
            obj = (CgConsultant)iterator.next();
            System.out.println(obj.getUsername());
            System.out.println(obj.getFirstName());
            System.out.println(obj.getLastName());
        }
        return iterator;
    }

And i have to populate the data in jsp and display it in the jsp

I m gettin the return status but how to populate the data n display it..

this is my jsp

<head>
    <title><fmt:message key="signup.title"/></title>
    <meta name="heading" content="<fmt:message key='signup.heading'/>"/>
</head>

<body>

        <h1> Search Complete</h1>
        <h2> Details are..</h2><br>

        <s:property value="Searchresult"/>

</body>
</html>

Please specify any suggestion..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗恋未遂 2024-07-16 07:57:48

Taglib c 是 http://java.sun.com/jsp/jstl/core

            <c:forEach items="${Searchresult}" var="cgConsultant">
                    <c:out value="${cgConsultant.username}"/>
                    <c:out value="${cgConsultant.firstName}"/>
                    <c:out value="${cgConsultant.lastNameName}"/>
            </c:forEach>

添加一些漂亮的 html

Taglib c is http://java.sun.com/jsp/jstl/core

            <c:forEach items="${Searchresult}" var="cgConsultant">
                    <c:out value="${cgConsultant.username}"/>
                    <c:out value="${cgConsultant.firstName}"/>
                    <c:out value="${cgConsultant.lastNameName}"/>
            </c:forEach>

Add some nice html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文