我已经使用 LinkHashMap 从数据库中检索数据并将其填充到我在 JSF 中的列表框中。列表框被填充。基本上,如果用户从列表框中选择两个项目并单击计算命令按钮,应用程序应该向他显示总价。基本上在我的表中,我有两列,项目和价格。项目(字符串)显示在列表框中。但我的问题是如何检索作为值的价格(双倍),以便我可以计算用户在 JSF 页面中选择的数量的价格。请帮我解决这个问题。感谢和问候。
请参阅下面的代码:
Java 代码
import java.util.LinkedHashMap;
import java.util.Map;
import java.sql.*;
public class Menu2 {
String url = "jdbc:mysql://localhost:3306/esd";
String user = "root";
String pw = "root";
String favlst;
double total;
Map<String,Object> lst; {
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection(url, user, pw);
String sql = "SELECT * FROM list";
Statement stt = con.createStatement();
ResultSet rs = stt.executeQuery(sql);
lst = new LinkedHashMap<String, Object>();
while(rs.next()){
double price = rs.getDouble("Price");
String item = rs.getString("Item");
lst.put(item, price);
}
}catch(Exception e){
}
}
public double getTotal() {
return total;
}
public void setTotal(double total) {
this.total = total;
}
public Map<String, Object> getSelectlst() {
return lst;
}
public String Calculate(){
total = 0;
double price = 0;
price += (Double)lst.get(item);
return "success";
}
}
JSF 页面
<f:view>
<h:form>
<h3> Generated by Map </h3>
<h:selectOneListbox value = "#{menu2.selectlst}">
<f:selectItems value = "#{menu2.selectlst}"/>
</h:selectOneListbox>
<br> <br>
<h:commandButton value = "Calculate" action = "#{menu.Calculate}"/>
<br> <br>
Total: Rs <h:outputLabel value = "#{menu.total}"></h:outputLabel>
</h:form>