Here you can find the source of dump_strarr(String[] arr, String doc)
public static void dump_strarr(String[] arr, String doc)
//package com.java2s; //License from project: Apache License public class Main { public static void dump_strarr(String[] arr, String doc) { System.out.println(doc);/*from w ww . j a va2 s . co m*/ for (int i = 0; i < arr.length; i++) { System.out.println("(" + i + ") " + arr[i]); } } }