Java BeanUtils - Acesso básico de propriedade
Descrição
Você pode acessar as propriedades básicas usando as seguintes maneiras:
Propriedade Simples
Propriedade Indexada
Propriedade Mapeada
Propriedade Simples
Você pode obter e definir o simple valores de propriedade usando as assinaturas de API abaixo:
PropertyUtils.getSimpleProperty (Object, String)
PropertyUtils.SetSimpleProperty (Object, String, Object)
Parâmetros:
Object: É um objeto de bean que especifica a propriedade do bean a ser extraída.
String: É um nome de string que especifica o nome da propriedade a ser extraída.
Propriedade Indexada
Você pode usar duas opções para criar indexedpropriedades; a primeira opção é construir o subscrito no nome da propriedade e a segunda opção é definir o subscrito em um argumento separado para chamar o método.
As propriedades indexadas podem ser obtidas e definidas usando os métodos abaixo:
PropertyUtils.getIndexedProperty (Object, String)
PropertyUtils.getIndexedProperty (Object, String, int)
PropertyUtils.setIndexedProperty (Object, String, Object)
PropertyUtils.setIndexedProperty (Object, String, int, Object)
Parâmetros:
Object: É um objeto de bean que especifica a propriedade do bean a ser extraída.
String: É um nome de string que especifica o nome da propriedade a ser extraída.
int: Define um índice do valor da propriedade.
Object: Especifica o valor de um elemento de propriedade indexado.
Propriedade Mapeada
Você pode obter e definir o mappedvalores de propriedade usando as assinaturas de API abaixo. Se você tiver qualquer argumento extra, ele pode ser escrito entre parênteses como ("(" e ")") em vez de usar colchetes.
PropertyUtils.getMappedProperty (Object, String)
PropertyUtils.getMappedProperty (Object, String, String)
PropertyUtils.setMappedProperty (Object, String, Object)
PropertyUtils.setMappedProperty (Object, String, String, Object)
Parâmetros:
Object: É um objeto de bean que especifica a propriedade do bean a ser extraída.
String: É o nome do valor da propriedade que deve ser definido para a propriedade Mapeada.
String: Define a chave do valor da propriedade a ser definida.
Object: Especifica o valor da propriedade a ser definida.
Exemplo
O exemplo a seguir demonstra o uso das propriedades acima no beanUtils:
import org.apache.commons.beanutils.PropertyUtils;
import java.util.ArrayList;
import java.util.List;
public class BeanUtilsPropertyDemo{
public static void main(String args[]){
try{
// Creating the bean and allows to access getter and setter properties
MyBean myBean = new MyBean();
// Setting the properties on the myBean
PropertyUtils.setSimpleProperty(myBean, "stringProp", "Hello!This is a string");
PropertyUtils.setSimpleProperty(myBean, "floatProp", new Float(25.20));
// Getting the simple properties
System.out.println("String Property: " + PropertyUtils.getSimpleProperty(myBean, "stringProp"));
System.out.println("Float Property: " + PropertyUtils.getSimpleProperty(myBean, "floatProp"));
// Here we will create a list for the indexed property
List
list = new ArrayList
(); list.add("String value 0"); list.add("String value 1"); myBean.setListProp(list); // get and set this indexed property PropertyUtils.setIndexedProperty(myBean, "listProp[1]", "This is new string value 1"); System.out.println("List Property[1]: " + PropertyUtils.getIndexedProperty(myBean, "listProp[1]")); }catch(Exception e){ System.out.println(e); } } }
Now we will create one more class called MyBean.java for the bean class:
import java.util.ArrayList;
import java.util.List;
public class MyBean {
private String stringProp;
private float floatProp;
//indexed property
@SuppressWarnings("rawtypes")
private List listProp = new ArrayList();
public void setStringProp(String stringProp) { this.stringProp = stringProp; }
public String getStringProp() { return this.stringProp; }
public void setFloatProp(float floatProp) { this.floatProp = floatProp; }
public float getFloatProp() { return this.floatProp; }
public void setListProp(List<?> listProp) { this.listProp = listProp; }
public List<?> getListProp() { return this.listProp; }
}
Output
Let's carry out the following steps to see how above code works:
Save the above first code as BeanUtilsPropertyDemo.java.
Now execute the code using Run option or Ctrl+f11 and output as below gets displayed.