Cara Memulai Indeks Array Dari 1 di Java

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