Comment démarrer l'index du tableau à partir de 1 en java

for(int i = 1; i < array.length(); i++) {
	Object o = array[i];
}
Bredo