次のコードでサーブレットを介して 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>
<% } %>