for (int f = start; f <= end; f++) {
int fIdx = f - start + 1;
map.clear();
map.put("id", "" + fIdx);
map.put("name", colNames[f]);
output.println(new FeatureMetaData(map).toString());
}
}
StringBuilder sb = new StringBuilder();
int lineCount = 0;
int target, fIdx;