0

我想使用数据表在 view_lang.xhtml 中显示语言,下面是我的课程

CountryBean.java

private ArrayList<Country> existingCountryList;
public ArrayList<Country> getExistingCountryList() {


    System.out.println("CountryBean.getExistingCountryList::Enter");


        existingCountryList = new ArrayList<Country>();
        existingCountryList.addAll(getCountryService().getExistingCountry());
        System.out.println("existingCountryList in countryBean"+existingCountryList);
        System.out.println("CountryBean.getExistingCountryList:::Exit");

return existingCountryList;


}

国家.java

private Set<CountryLanguage> countryLanguage = new HashSet<CountryLanguage>(0);

CountryLanguage.java

private CountryLanguageID countryLangPK = new CountryLanguageID();

CountryLanguageID.java

private Country country;
private Language language;

view_lang.xhtml

<h:dataTable id="existingCountry" var="countryLang" value="#{countryBean.existingCountryList}"
        style="width: 100%"  cellpadding="0"  cellspacing="1" border="0" class="role_detail_section" rowClasses="activity_white, activity_blue">

    <h:column>
            <f:facet name="header">
                <h:outputText value="Language(Code)" styleClass="heading_pm_det_white"/>
            </f:facet>

              <h:outputText value="#{countryLang.languageName}(#{countryLang.languageCode})" styleClass="heading_pm_det_white" />
        </h:column>

    </h:dataTable>

我能够使用语言获取国家/地区对象,但无法在数据表中打印。我必须使用 forEach 什么是 syntex,如果是,那么如何。谢谢

4

1 回答 1

1

您可以使用<ui:repeat>它,但这不支持Set(因为它不是按索引排序的)。您需要将其转换为一个List或一个数组。如果您使用的是 EL 2.2,那么您可以Set#toArray()直接在 EL 中使用调用:

<ui:repeat value="#{countryLang.countryLanguage.toArray()}" var="countryLanguage">
    ...
</ui:repeat>

更新,根据评论,你想打印它以逗号分隔,你可以这样做:

<ui:repeat value="#{countryLanguage.language.languageName}" var="languageName" varStatus="loop">
    #{languageName}#{loop.last ? '' : ', '}
</ui:repeat>

注意: iflanguageName实际上是 aSet而不是List,显然toArray()在那里使用。

于 2013-09-04T14:28:38.233 回答