<select name="supplier">
<%
try {
Connection conn = JavaConnect.ConnectDb();
Statement stmt = conn.createStatement();
ResultSet rs;
rs = stmt.executeQuery("SELECT name FROM supplier ");
while(rs.next()) {
out.write("<option value ="+rs.getString("name")+"</option>");
}
rs.close();
stmt.close();
}
catch(Exception e) {
System.err.print("Sorry");
}
%>
</select>
jspページにコンボボックスを入力しようとしていますが、上記を試しましたが、空のコンボボックスが表示されます。私は他の答えを調べましたが、それらのほとんどはうまくいかないようです。