-1

当我通过以下代码通过 Servlet 调度 JSP 页面时:

String[] UserList = ViewAllUserBasedOnRights(UserViewBy);
request.getRequestDispatcher("/test/TestGetParameterValues.jsp?UserList="+UserList+"").forward(request, response);

JSP 页面显示“ [Ljava.lang.String;@8b3f2a ”。

在此方法中,“ ViewAllUserBasedOnRights();”值是从我的数据库中收集的,它将返回一个NULL或一组Strings.

细节:

public static String[] ViewAllUserBasedOnRights(String UserName) throws Exception{
                String[] retVal = null;
                Connection con=null;
                try{
                con= DatabaseConnectionManager.getDatabaseConnectionManager().getConnection(DatabaseConnectionManager.EAGRO_APP_DB);
                con.setAutoCommit(false);
                Statement stmt = (Statement) con.createStatement();
                Statement stmt1 = (Statement) con.createStatement();
                String SQLStringCount = "....";
                try(ResultSet rs = stmt.executeQuery(SQLStringCount)){
                    int count = -1;
                    while(rs.next()){
                        count = Integer.parseInt(rs.getString("COUNT"));
                    }
                    if(count > 0){
                        String SQLString =".....";

                    System.out.println("SQLString: "+SQLString);
                    try(ResultSet rs1 = stmt1.executeQuery(SQLString)){
                        ArrayList<String> stringList = new ArrayList<String>(); 
                        while(rs1.next()){
                            stringList.add(rs1.getString("USER_NAME"));
                        }
                        String[] temp = new String[stringList.size()];
                        retVal = (String[]) stringList.toArray(temp);
                        con.commit();
                        rs1.close();

                    }catch(SQLException e){
                        try{
                            if(con!=null)
                                extracted(con);
                            }catch(Exception ex){}
                        }
                }
            }catch(SQLException e){
                try{
                    if(con!=null)
                        extracted(con);
                    }catch(Exception ex){}
                }

            }catch(SQLException e){
                try{
                    if(con!=null)
                        extracted(con);
                    }catch(Exception ex){}
                }
            return retVal;
        }

我的 JSP 页面的代码,它非常简单,只需我捕获值并打印:

<%
String[] UserList;
UserList = (String[])request.getParameterValues("UserList");
for(int i = 0; i < UserList.length; i++){
%>
<tr>
<td style="border:1px solid black;" align="center"><%=i+1%>
</td>
<td style="border:1px solid black;" align="left" ><%=UserList[i]%>
</td>
</tr>
<% } %>
4

3 回答 3

1

jsp中不推荐使用scriptlet,可以使用jstl标签

<c:forEach items="UserList" var="temp">
   ${temp}
</c:forEach>

并导入<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

在使用之前

于 2013-03-18T07:22:23.290 回答
0

谢谢大家,我得到了解决方案,我在下面的 Servlet 和 JSP 页面上进行了编辑

Servlet 中的更改:

String[] UserList = ViewAllUserBasedOnRights(UserViewBy);
request.setAttribute("userList", UserList);
request.getRequestDispatcher("/test/TestGetParameterValues.jsp").forward(request, response);

在 JSP 页面中更改:

<%
String[] UserList = null;
if(request.getAttribute("UserList")!= null){
UserList = new String[((String[])request.getAttribute("UserList")).length];
UserList = ((String[])request.getAttribute("UserList"));
}
for(int i = 0; i < UserList.length; i++){
%>
<tr>
    <td style="border:1px solid black;" align="center"><%=i+1%>
    </td>
    <td style="border:1px solid black;" align="left" ><%=UserList[i]%>
    </td>
</tr>
<% } %>
于 2013-03-18T15:19:38.500 回答
0

从您的代码中,我看到您ArrayList在迭代时创建了一个ResultSet,然后创建了 String 数组来发送值。

因为,您正在将请求转发给 JSP,您应该将ArrayList请求对象作为请求对象发送给 JSP,然后在那里对其进行迭代。

从方法而不是数组返回ArrayList( )。return stringList;ViewAllUserBasedOnRights(UserViewBy)String

转发页面时:

List<String> userList = ViewAllUserBasedOnRights(UserViewBy);
request.setAttribute("userList", userList);
request.getRequestDispatcher("/test/TestGetParameterValues.jsp").forward(request, response);

JSP:

<%
List<String> userList;
int nSize=0;
userList = (ArrayList<String>)request.getAttribute("userList");
if(userList!=null){
nSize= userList.size();
}

for(int i = 0; i < nSize; i++){
%>
<tr>
<td style="border:1px solid black;" align="center"><%=i+1%>
</td>
<td style="border:1px solid black;" align="left" ><%=userList.get(i)%>
</td>
</tr>
<% } %>
于 2013-03-18T09:12:20.323 回答