我試圖使用BeanUtils的同一個Java bean類似於以下交互的列表索引屬性: public class Bean {
private List<Integer> prices = new LinkedList<Integer>();
public List<Integer> getPrices() {
return prices;
}
}
我有下面的類: import org.apache.commons.beanutils.BeanUtils;
import com.thoughtworks.xstream.XStream;
...
public class MyBean {
protected static final XStream XSTREAM = new XStream(new DomDriver())
我使用PropertyUtils.setProperty(對象名稱,值)阿帕奇百科全書豆utils的的方法: 給這些類: public class A {
B b;
}
public class B {
C c;
}
public class C {
}
這: A a = new A();
C c = new C();
PropertyUtils.setP
在Apache Commons BeanUtil中,如何在列表中獲取類型?例如 class Track {
List<Actor> actorList = new ArrayList<Actor>();
}
System.err.println(PropertyUtils.getPropertyType(trackBean, "actorList"));
// it should
我想在一個bean設置一個屬性,我不能似乎得到BeanUtils的工作的BeanUtils ...... 繼承人我得到這個問題的一個小例子。 public class Example
{
public static void main(String[] args)
{
Example example = new Example();
example.r