|
@@ -64,6 +64,9 @@ public class TransUtils {
|
|
|
for (int i = 1; i < lines.length; i++) {
|
|
|
String[] words = lines[i].split("\\|");
|
|
|
TransVo transVo1 = new TransVo();
|
|
|
+ if (words == null || words.length < 8){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
transVo1.setNum(Integer.valueOf(words[0]));
|
|
|
transVo1.setFarmerName(words[1]);
|
|
|
transVo1.setFarmerAccount(words[2]);
|