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

惠州JSF硬编码复选框是什么?_北大青鸟IT学校

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


导读:你知道JSF硬编码复选框是什么吗?下面我们跟着惠州北大青鸟老师一起来学习一下JSF硬编码复选框的知识。

你知道JSF硬编码复选框是什么吗?下面我们跟着惠州北大青鸟老师一起来学习一下JSF硬编码复选框的知识。

以下代码来自demo.xhtml。

它使用h:selectManyCheckbox和f:selectItem to创建硬编码复选框项。

<?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>
     <h2>Mutiple checkboxes</h2>
     
     1. Hard-coded with "f:selectItem" :
      <h:selectManyCheckbox value="#{user.favNumber1}">
        <f:selectItem itemValue="1" itemLabel="Number1 - 1" />
        <f:selectItem itemValue="2" itemLabel="Number1 - 2" />
        <f:selectItem itemValue="3" itemLabel="Number1 - 3" />
        <f:selectItem itemValue="4" itemLabel="Number1 - 4" />
        <f:selectItem itemValue="5" itemLabel="Number1 - 5" />
      </h:selectManyCheckbox>
     
     <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"
     >

   <h:body>
     
     <h1>JSF 2 checkboxes example</h1>
     
     <h2>result.xhtml</h2>
     
     <ol>
       <li>user.favNumber1 : #{user.favNumber1InString}</li>
     </ol>
   </h:body>

</html>

下面的代码来自UserBean.java。

package cn.w3cschool.common;


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{  public String[] favNumber1;  public String[] getFavNumber1() {
   return favNumber1;
 }  public void setFavNumber1(String[] favNumber1) {
   this.favNumber1 = favNumber1;
 }  public String getFavNumber1InString() {
   return Arrays.toString(favNumber1);
 }
 

}

想了解更多关于Java的资讯,可以来惠州北大青鸟新方舟校区了解一下。

Java13.png

Java

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


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