List<Entry<EntryValueLong>> entryList = new ArrayList<Entry<EntryValueLong>>();
for(int i = cnt - 1; i >= 0; i--) {
String fileName = getEntryFileName(startId + i);
File file = new File(testDir, fileName);
PreFillEntryLong entry = new PreFillEntryLong(100);
entry.save(file);
entryList.add(entry);
}
EntryUtility.sortEntriesById(entryList);