Commit 352d5db3 authored by 吴卿华's avatar 吴卿华

修改题目导入时报错问题

parent 3b66eec1
package com.zehong.web.controller.system;
import java.io.IOException;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
......@@ -156,8 +158,12 @@ public class TBankSubjectController extends BaseController
excelEntity.setBankId(bankId);
/**题目*/
excelEntity.setTopicTitle(row.getCell(0).toString());
String s1= row.getCell(10).toString();
String s2 = StringUtils.substringBefore(s1, ".");
/**题目类型*/
excelEntity.setTopicType(Integer.valueOf(row.getCell(10).toString()));
excelEntity.setTopicType(Integer.valueOf(s2));
/**题目*/
for (int s=1;s<=8;s++){
JSONObject jsonObject=new JSONObject();
......@@ -166,6 +172,7 @@ public class TBankSubjectController extends BaseController
jsonArray.add(jsonObject);
}
}
System.out.println(row.getCell(9).toString());
/**答案*/
excelEntity.setAnswer(row.getCell(9).toString());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment