import java.util.List
import com.javen.db.DBhepler
import com.javen.entity.StuEntity
import com.javen.service.StuService
/**
* @author Javen
* @Email zyw205@gmail.com
*
*/
public class TestExcelToDb {
public static void main(String[] args) {
//得到表格中所有的数据
List<StuEntity>listExcel=StuService.getAllByExcel("d://book.xls")
/*//得到数据库表中所有的数据
List<StuEntity>listDb=StuService.getAllByDb()*/
DBhepler db=new DBhepler()
for (StuEntity stuEntity : listExcel) {
int id=stuEntity.getId()
if (!StuService.isExist(id)) {
//不存在就添加
String sql="insert into stu (name,sex,num) values(?,?,?)"
String[] str=new String[]{stuEntity.getName(),stuEntity.getSex(),stuEntity.getNum()+""}
db.AddU(sql, str)
}else {
//存在就更新
String sql="update stu set name=?,sex=?,num=? where id=?"
String[] str=new String[]{stuEntity.getName(),stuEntity.getSex(),stuEntity.getNum()+"",id+""}
db.AddU(sql, str)
}
}
}
}
public static void main(String args[]) throws BiffException, IOException, WriteException{//1 从Excel文件读取数据表
//Java Excel API既可以从本地文件系统的一个文件(.xls),也可以从输入流中读取Excel数据表。
//读取Excel数据表的第一步是创建Workbook(术语:工作薄),下面的代码片段举例说明了应该如何 *** 作:
//(完整代码见ExcelReading.java)
try
{
//构建Workbook对象, 只读Workbook对象
//直接从本地文件创建Workbook
//从输入流创建Workbook
InputStream is = new FileInputStream("D:/user.xls")
jxl.Workbook rwb = Workbook.getWorkbook(is)
//一旦创建了Workbook,我们就可以通过它来访问Excel Sheet(术语:工作表)。参考下面的代码片段:
//获取第一张Sheet表
Sheet rs = (Sheet) rwb.getSheet(0)
//我们既可能通过Sheet的名称来访问它,也可以通过下标来访问它。如果通过下标来访问的话,
//要注意的一点是下标从0开始,就像数组一样。
//一旦得到了Sheet,我们就可以通过它来访问Excel Cell(术语:单元格)。参考下面的代码片段:
//获取第一行,第一列的值
Cell c00 = ((jxl.Sheet) rs).getCell(0, 0)
String strc00 = c00.getContents()
//获取第一行,第二列的值
Cell c10 = ((jxl.Sheet) rs).getCell(1, 0)
String strc10 = c10.getContents()
//获取第二行,第二列的值
Cell c11 = ((jxl.Sheet) rs).getCell(1, 1)
String strc11 = c11.getContents()
System.out.println("Cell(0, 0)" + " value : " + strc00 + "type : " + c00.getType())
System.out.println("Cell(1, 0)" + " value : " + strc10 + "type : " + c10.getType())
System.out.println("Cell(1, 1)" + " value : " + strc11 + "type : " + c11.getType())
//如果仅仅是取得Cell的值,我们可以方便地通过getContents()方法,
//它可以将任何类型的Cell值都作为一个字符串返回。示例代码中Cell(0, 0)是文本型,
//Cell(1, 0)是数字型,Cell(1,1)是日期型,通过getContents(),三种类型的返回值都是字符型。
//如果有需要知道Cell内容的确切类型,API也提供了一系列的方法。参考下面的代码片段:
String strcc00 = null
double strcc10 = 0.00
Date strcc11 = null
Cell cc00 = ((jxl.Sheet) rs).getCell(0, 0)
Cell cc10 = ((jxl.Sheet) rs).getCell(1, 0)
Cell cc11 = ((jxl.Sheet) rs).getCell(1, 1)
if(c00.getType() == CellType.LABEL)
{
LabelCell labelc00 = (LabelCell)cc00
strcc00 = labelc00.getString()
}
if(c10.getType() == CellType.NUMBER)
{
NumberCell numc10 = (NumberCell)cc10
strcc10 = numc10.getValue()
}
if(c11.getType() == CellType.DATE)
{
DateCell datec11 = (DateCell)cc11
strcc11 = datec11.getDate()
}
System.out.println("Cell(0, 0)" + " value : " + strcc00 + "type : " + cc00.getType())
System.out.println("Cell(1, 0)" + " value : " + strcc10 + "type : " + cc10.getType())
System.out.println("Cell(1, 1)" + " value : " + strcc11 + "type : " + cc11.getType())
//在得到Cell对象后,通过getType()方法可以获得该单元格的类型,然后与API提供的基本类型相匹配,
//强制转换成相应的类型,最后调用相应的取值方法getXXX(),就可以得到确定类型的值。
//API提供了以下基本类型,与Excel的数据格式相对应,如下图所示:
//每种类型的具体意义,请参见Java Excel API Document。
//当你完成对Excel电子表格数据的处理后,一定要使用close()方法来关闭先前创建的对象,
//以释放读取数据表的过程中所占用的内存空间,在读取大量数据时显得尤为重要。参考如下代码片段:
// *** 作完成时,关闭对象,释放占用的内存空间
rwb.close()
}
catch (Exception e)
{
e.printStackTrace()
}
//Java Excel API提供了许多访问Excel数据表的方法,在这里我只简要地介绍几个常用的方法,
//其它的方法请参考附录中的Java Excel API Document。
//Workbook类提供的方法
//1. int getNumberOfSheets()
//获得工作薄(Workbook)中工作表(Sheet)的个数,示例:
jxl.Workbook rwb = jxl.Workbook.getWorkbook(new File("D:/user.xls"))
int sheets = rwb.getNumberOfSheets()
//2. Sheet[] getSheets()
//返回工作薄(Workbook)中工作表(Sheet)对象数组,示例:
jxl.Workbook rwb2 = jxl.Workbook.getWorkbook(new File("D:/user.xls"))
Sheet[] sheets2 = (Sheet[]) rwb2.getSheets()
//3. String getVersion()
//返回正在使用的API的版本号,好像是没什么太大的作用。
jxl.Workbook rwb3 = jxl.Workbook.getWorkbook(new File("D:/user.xls"))
String apiVersion = rwb3.getVersion()
//Sheet接口提供的方法
//1) String getName()
//获取Sheet的名称,示例:
jxl.Workbook rwb4 = jxl.Workbook.getWorkbook(new File("D:/user.xls"))
jxl.Sheet rs = rwb4.getSheet(0)
String sheetName = rs.getName()
//2) int getColumns()
//获取Sheet表中所包含的总列数,示例:
jxl.Workbook rwb5 = jxl.Workbook.getWorkbook(new File("D:/user.xls"))
jxl.Sheet rs2 = rwb5.getSheet(0)
int rsColumns = rs2.getColumns()
//3) Cell[] getColumn(int column)
//获取某一列的所有单元格,返回的是单元格对象数组,示例:
jxl.Workbook rwb6 = jxl.Workbook.getWorkbook(new File("D:/user.xls"))
jxl.Sheet rs3 = rwb6.getSheet(0)
Cell[] cell = rs3.getColumn(0)
//4) int getRows()
//获取Sheet表中所包含的总行数,示例:
jxl.Workbook rwb7 = jxl.Workbook.getWorkbook(new File("D:/user.xls"))
jxl.Sheet rs4 = rwb7.getSheet(0)
int rsRows = rs4.getRows()
//5) Cell[] getRow(int row)
//获取某一行的所有单元格,返回的是单元格对象数组,示例子:
jxl.Workbook rwb8 = jxl.Workbook.getWorkbook(new File("D:/user.xls"))
jxl.Sheet rs5 = rwb8.getSheet(0)
Cell[] cell5 = rs5.getRow(0)
//6) Cell getCell(int column, int row)
//获取指定单元格的对象引用,需要注意的是它的两个参数,第一个是列数,第二个是行数,
//这与通常的行、列组合有些不同。
jxl.Workbook rwb9 = jxl.Workbook.getWorkbook(new File("D:/user.xls"))
jxl.Sheet rs6 = rwb9.getSheet(0)
Cell cell6 = rs6.getCell(0, 0)
//从excle文档中,将值导入至list数组//xlsPath 路径 从前台获取
//Excle导入
public List<TblUser> loadScoreInfo(String xlsPath) throws IOException{
List temp = new ArrayList()
FileInputStream fileIn = new FileInputStream(xlsPath)
//根据指定的文件输入流导入Excel从而产生Workbook对象
Workbook wb0 = new HSSFWorkbook(fileIn)
//获取Excel文档中的第一个表单
Sheet sht0 = wb0.getSheetAt(0)
//对Sheet中的每一行进行迭代
for (Row r : sht0) {
//如果当前行的行号(从0开始)未达到2(第三行)则从新循环
if(r.getRowNum()<1){
continue
}
//创建实体类
TblUser info=new TblUser()
//取出当前行第1个单元格数据,并封装在info实体stuName属性上
if(r.getCell(0)!=null){
r.getCell(0).setCellType(Cell.CELL_TYPE_STRING)
info.setId(Integer.parseInt(r.getCell(0).getStringCellValue()))
}
//同上
if(r.getCell(1)!=null){
r.getCell(1).setCellType(Cell.CELL_TYPE_STRING)
info.setUsername(r.getCell(1).getStringCellValue())
}
if(r.getCell(2)!=null){
r.getCell(2).setCellType(Cell.CELL_TYPE_STRING)
info.setPassword(r.getCell(2).getStringCellValue())
}
if(r.getCell(3)!=null){
r.getCell(3).setCellType(Cell.CELL_TYPE_STRING)
info.setState(r.getCell(3).getStringCellValue())
}
if(r.getCell(4)!=null){
r.getCell(4).setCellType(Cell.CELL_TYPE_STRING)
info.setRename(r.getCell(4).getStringCellValue())
}
if(r.getCell(5)!=null){
r.getCell(5).setCellType(Cell.CELL_TYPE_STRING)
info.setEmail(r.getCell(5).getStringCellValue())
}
temp.add(info)
}
fileIn.close()
return temp
}
public void ztree()
{
}
//导出当前页的数据
public void exportPage(){
List<TblUser> list=new ArrayList<TblUser>()
String[] slist=daor.split(",")
//将页面获取到的id集合遍历,循环添加到list中,进行本页数据到导出
for (int i = 0 i < slist.length i++) {
list.add(tus.findById(java.lang.Integer.parseInt(slist[i])))
}
tus.export(list)
}
/**
* 导入Excle到数据库
* @return null 不然有可能报错!
* @throws IOException
*/
public void importExcle() throws IOException{
//调用导入文件方法并存入数组中
int s=0//得到成功插入的条数
int i=0//得到共有多少条
/**
* 将不符合格式的数据错误信息存入数组中!
* 格式要求:
* 用户名,密码不能为空!
* 用户名不能和已存在的用户名重复,长度在5-18位之间
* 密码长度在6-18位之间
*/
String errors=""//保存导入失败信息
try {
System.out.println("进入方法!")
lists=this.loadScoreInfo(path)
System.out.println(path)
for (TblUser u : lists) {
i++
if(u.getUsername()==""){
errors+="第"+i+"条数据的用户名为空,导入失败!"//^^:分割符
continue
}
if(u.getPassword()==""){
errors+="第"+i+"条数据的密码为空,导入失败!"//^^:分割符
continue
}
if(tus.findByName(u.getUsername())){
errors+="第"+i+"条数据的用户名 已存在,导入失败!"//^^:分割符
continue
}
if(u.getUsername().length()<5 || u.getUsername().length()>20){
errors+="第"+i+"条数据的用户名格式错误,导入失败!"//^^:分割符
continue
}
if(u.getPassword().length()<6 || u.getPassword().length()>20){
errors+="第"+i+"条数据的密码格式错误,导入失败!"//^^:分割符
continue
}
s++
tus.save(u)//将数组中的数据添加到数据库中!
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace()
}finally{
System.out.println("错误:"+errors)
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)