广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州什么是SelectManyListBox var?_北大青鸟IT学校

作者:邓华发布时间:2021-04-25分类:Java技术浏览:755


导读:你知道什么是SelectManyListBox var吗?SelectManyListBox var是Java中JSF列表框多选中的一种。接下来我们一起来看看惠州北大青鸟老师是怎么解答的。

你知道什么是SelectManyListBox var吗?SelectManyListBox var是Java中JSF列表框多选中的一种。接下来我们一起来看看惠州北大青鸟老师是怎么解答的。

下面的代码来自UserBean.java。

package cn.w3cschool.common;


import java.io.Serializable;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;

@ManagedBean(name="user")
@SessionScopedpublic class UserBean implements Serializable{  public String[] item = {"A", "B"};  public String[] getItem() {
   return item;
 }  public void setItem(String[] i) {
   this.item = i;
 }  public String getItemString() {
   return Arrays.toString(item);
 }
 //Generated by Object array
 public static class Item{    public String label;    public String value;    
   public Item(String l, String v){
     this.label = l;
     this.value = v;
   }    
   public String getLabel(){
     return label;
   }    
   public String getValue(){
     return value;
   }
   
 }  
 public Item[] itemList;  
 public Item[] getItemValue() {
   itemList = new Item[3];
   itemList[0] = new Item("Item A", "A");
   itemList[1] = new Item("Item B", "B");
   itemList[2] = new Item("Item C", "C");
   
   return itemList;
 }

}

以下代码来自demo.xhtml。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"  
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:f="http://java.sun.com/jsf/core"
     >
   <h:body>
     <h:form>
     Generated by Object array and iterate with var :
      <h:selectManyListbox value="#{user.item}">
        <f:selectItems value="#{user.itemValue}" var="f"
        itemLabel="#{f.label}" itemValue="#{f.value}" />
      </h:selectManyListbox>
     
   <br /><br />
     <h:commandButton value="Submit" action="result" />
   <h:commandButton value="Reset" type="reset" />
     </h:form>
   </h:body>
</html>

以下代码来自result.xhtml。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"  
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns:c="http://java.sun.com/jsp/jstl/core">
   <h:body>
 Selected:  #{user.itemString}
       
   </h:body>
</html>

通过老师的解答,你知道什么是SelectManyListBox var了吗?想了解更多关于Java的知识,联系在线客服,或者来惠州北大青鸟新方舟校区了解一下。

java7.png

Java

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表