在Java中,可以使用for循環來遍歷整個數組并輸出每個元素。例如:
public class Main {
public static void main(String[] args) {
int[] array = {1, 2, 3, 4, 5};
for (int i = 0; i < array.length; i++) {
System.out.print(array[i] + " ");
}
}
}
以上代碼會輸出整個數組的元素:1 2 3 4 5。您可以根據需要更改數組的內容以及輸出格式。