2012-03-30 50 views
-3

我想出來放在屏幕上的數組。但數組(ans)未被識別。 jsp對我來說很新。 我想數組列表像Java一樣公開。 這可能嗎?我需要在jsp位聲明數組。所以我可以顯示它和底部。 我該怎麼做。JSP使數組列表公開

這是我的代碼。

<% 
SimpleDataSource.init("database.properties"); 

Connection con = SimpleDataSource.getConnection(); 
try { 
    PreparedStatement pst = (PreparedStatement) con.prepareStatement("SELECT * FROM Quiz2"); 
    ResultSet rs = pst.executeQuery(); 
    //ArrayList<String> ans = new ArrayList<String>(); 

    int i = 0; 
    while (rs.next()) { 
     ans[i] = rs.getString(1); 
     i++; 
    } 
} finally { 
    con.close(); 
} 
%> 
<!DOCTYPE html> 
<html> 
<head> 
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
    <title>JSP Page</title> 
</head> 
<body> 
    <h1>Hello World!</h1> 
    <h2>ans</h2> //output array here. 
</body> 
</html> 
+0

嗯...這看起來不像PHP我.... – Neal 2012-03-30 18:49:08

回答

0

這不是PHP代碼。但是,數組聲明會被註釋掉,因此代碼不起作用。

+0

不解決問題 – 2012-03-30 18:59:56