Aquí hay un tutorial sobre cómo ordenar objetos:
Aunque daré algunos ejemplos, recomendaría leerlo de todos modos.
Hay varias formas de ordenar un ArrayList
. Si desea definir un naturales (por defecto) de pedidos , a continuación, es necesario dejar que Contact
poner en práctica Comparable
. Suponiendo que desea ordenar de forma predeterminada name
, haga (se omiten las comprobaciones nulas para simplificar):
public class Contact implements Comparable<Contact> {
private String name;
private String phone;
private Address address;
public int compareTo(Contact other) {
return name.compareTo(other.name);
}
// Add/generate getters/setters and other boilerplate.
}
para que puedas hacer
List<Contact> contacts = new ArrayList<Contact>();
// Fill it.
Collections.sort(contacts);
Si desea definir un orden controlable externo (que anula el orden natural), entonces necesita crear un Comparator
:
List<Contact> contacts = new ArrayList<Contact>();
// Fill it.
// Now sort by address instead of name (default).
Collections.sort(contacts, new Comparator<Contact>() {
public int compare(Contact one, Contact other) {
return one.getAddress().compareTo(other.getAddress());
}
});
Incluso puede definir los Comparator
s en Contact
sí mismo para poder reutilizarlos en lugar de volver a crearlos cada vez:
public class Contact {
private String name;
private String phone;
private Address address;
// ...
public static Comparator<Contact> COMPARE_BY_PHONE = new Comparator<Contact>() {
public int compare(Contact one, Contact other) {
return one.phone.compareTo(other.phone);
}
};
public static Comparator<Contact> COMPARE_BY_ADDRESS = new Comparator<Contact>() {
public int compare(Contact one, Contact other) {
return one.address.compareTo(other.address);
}
};
}
que se puede utilizar de la siguiente manera:
List<Contact> contacts = new ArrayList<Contact>();
// Fill it.
// Sort by address.
Collections.sort(contacts, Contact.COMPARE_BY_ADDRESS);
// Sort later by phone.
Collections.sort(contacts, Contact.COMPARE_BY_PHONE);
Y para aclarar la parte superior, podría considerar usar un comparador de Java genérico :
public class BeanComparator implements Comparator<Object> {
private String getter;
public BeanComparator(String field) {
this.getter = "get" + field.substring(0, 1).toUpperCase() + field.substring(1);
}
public int compare(Object o1, Object o2) {
try {
if (o1 != null && o2 != null) {
o1 = o1.getClass().getMethod(getter, new Class[0]).invoke(o1, new Object[0]);
o2 = o2.getClass().getMethod(getter, new Class[0]).invoke(o2, new Object[0]);
}
} catch (Exception e) {
// If this exception occurs, then it is usually a fault of the developer.
throw new RuntimeException("Cannot compare " + o1 + " with " + o2 + " on " + getter, e);
}
return (o1 == null) ? -1 : ((o2 == null) ? 1 : ((Comparable<Object>) o1).compareTo(o2));
}
}
que puede utilizar de la siguiente manera:
// Sort on "phone" field of the Contact bean.
Collections.sort(contacts, new BeanComparator("phone"));
(como puede ver en el código, posiblemente los campos nulos ya estén cubiertos para evitar NPE durante la clasificación)