String[] paras = aLine.split("=");
if (paras != null && paras.length > 1) {
Map map = new HashMap();
map.put("l10n_en", paras[0].toLowerCase());
map.put("l10n_china", paras[1]);
theService.addBatch(map);
}
}
theService.endBatch();
} catch (Exception e) {
e.printStackTrace();