Here you can find the source of dumpIntArray(int[] data, String label)
protected static void dumpIntArray(int[] data, String label)
//package com.java2s; //License from project: Apache License public class Main { protected static void dumpIntArray(int[] data, String label) { System.out.print(label);//from w ww . ja v a 2s . co m for (int i = 0; i < data.length; ++i) { if (i % 6 == 0) { System.out.println(); } System.out.format(" %1$11d", data[i]); } System.out.println(); } }