我想用my bean动态创建一个表单。我正在使用JSF 2.0
HtmlOutputText htmlOutputText = new HtmlOutputText();
我应该如何设置HtmlOutputText的内容?
答案 0 :(得分:1)
HtmlOutputText
延伸javax.faces.component.UIOutput
。
UIOutput#setValue()
是您正在寻找的方法:
String value;
HtmlOutputText htmlOutputText = new HtmlOutputText();
htmlOutputText.setValue(value);
<强>链接强>: