Java BeanUtils - Accesso alle proprietà di base
Descrizione
È possibile accedere alle proprietà di base utilizzando i seguenti modi:
Proprietà semplice
Proprietà indicizzata
Proprietà mappata
Proprietà semplice
Puoi ottenere e impostare il file simple valori delle proprietà utilizzando le seguenti firme API:
PropertyUtils.getSimpleProperty (Object, String)
PropertyUtils.SetSimpleProperty (Object, String, Object)
Parametri:
Object: È un oggetto bean che specifica la proprietà bean da estrarre.
String: È un nome stringa che specifica il nome della proprietà da estrarre.
Proprietà indicizzata
Puoi usare due opzioni per creare indexedproprietà; la prima opzione è costruire il pedice nel nome della proprietà e la seconda opzione è definire il pedice in un argomento separato per chiamare il metodo.
Le proprietà indicizzate possono essere ottenute e impostate utilizzando i metodi seguenti:
PropertyUtils.getIndexedProperty (Object, String)
PropertyUtils.getIndexedProperty (Object, String, int)
PropertyUtils.setIndexedProperty (Object, String, Object)
PropertyUtils.setIndexedProperty (Object, String, int, Object)
Parametri:
Object: È un oggetto bean che specifica la proprietà bean da estrarre.
String: È un nome stringa che specifica il nome della proprietà da estrarre.
int: Imposta un indice del valore della proprietà.
Object: Specifica il valore per un elemento di proprietà indicizzato.
Proprietà mappata
Puoi ottenere e impostare il file mappedvalori delle proprietà utilizzando le firme API seguenti. Se si dispone di un argomento aggiuntivo, è possibile scriverlo tra parentesi come ("(" e ")") invece di utilizzare le parentesi quadre.
PropertyUtils.getMappedProperty (Object, String)
PropertyUtils.getMappedProperty (Object, String, String)
PropertyUtils.setMappedProperty (Object, String, Object)
PropertyUtils.setMappedProperty (Object, String, String, Object)
Parametri:
Object: È un oggetto bean che specifica la proprietà bean da estrarre.
String: È un nome del valore della proprietà che dovrebbe essere impostato per la proprietà mappata.
String: Definisce la chiave del valore della proprietà da impostare.
Object: Specifica il valore della proprietà da impostare.
Esempio
L'esempio seguente mostra l'uso delle proprietà precedenti in 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.