从excel表格读取数据用Java代码实现批量上传写入数据库
怎样从excel表格读取数据用Java代码实现批量上传写入数据库,比如学生表,有班级、姓名、学号、年龄等属性,在excel中有多个学生的集合,导入excel文件,Java...
怎样从excel表格读取数据用Java代码实现批量上传写入数据库,比如学生表,有班级、姓名、学号、年龄等属性,在excel中有多个学生的集合,导入excel文件,Java程序批量上传进数据库!
展开
2个回答
展开全部
public static List<Student> parseExcel(){
//解析excel文件 获取数据
//将每行数据当作一个Student对象放入list集合
List<Student> list = new ArryList<Student>();
...
return list;
}
public static void updateDataBase(Student stu){
//更新数据库 将Student对象插入数据库
...
}
public void main(String[] args){
List<Student> list = parseExcel();//读取excel
for(Student stu:list){//遍历集合向数据库插入数据
updateDataBase(stu);
}
}
大致的写了下 具体实现应该没问题吧?
//解析excel文件 获取数据
//将每行数据当作一个Student对象放入list集合
List<Student> list = new ArryList<Student>();
...
return list;
}
public static void updateDataBase(Student stu){
//更新数据库 将Student对象插入数据库
...
}
public void main(String[] args){
List<Student> list = parseExcel();//读取excel
for(Student stu:list){//遍历集合向数据库插入数据
updateDataBase(stu);
}
}
大致的写了下 具体实现应该没问题吧?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询