怎样把Excel表格导入到SQL数据库中

 我来答
黑马程序员
2016-09-22 · 改变中国IT教育,我们正在行动
黑马程序员
黑马程序员为大学毕业后,有理想、有梦想,想从事IT行业的年轻人改变自己的命运。黑马程序员成就IT黑马
向TA提问
展开全部

下面是使用Java实现的,将Excel数据表中的数据导入到数据库里里面。


public class ReadExcel {
   /**
    * 对外提供读取excel 的方法
    * */
   public static List<List<Object>> readExcel(File file) throws IOException {
       String fileName = file.getName();
       String extension = fileName.lastIndexOf(".") == -1 ? "" : fileName
               .substring(fileName.lastIndexOf(".") + 1);
       if ("xls".equals(extension)) {
           return read2003Excel(file);
       } else if ("xlsx".equals(extension)) {
           return read2007Excel(file);
       } else {
           throw new IOException("不支持的文件类型");
       }
   }

   /**
    * 读取 office 2003 excel
    *
    * @throws IOException
    * @throws FileNotFoundException
    */
   private static List<List<Object>> read2003Excel(File file)
           throws IOException {
       List<List<Object>> list = new LinkedList<List<Object>>();
       HSSFWorkbook hwb = new HSSFWorkbook(new FileInputStream(file));
       HSSFSheet sheet = hwb.getSheetAt(0);
       Object value = null;
       HSSFRow row = null;
       HSSFCell cell = null;
       int counter = 0;
       for (int i = sheet.getFirstRowNum(); counter < sheet
               .getPhysicalNumberOfRows(); i++) {
           row = sheet.getRow(i);
           if (row == null) {
               continue;
           } else {
               counter++;
           }
           List<Object> linked = new LinkedList<Object>();
           for (int j = row.getFirstCellNum(); j <= row.getLastCellNum(); j++) {
               cell = row.getCell(j);
               if (cell == null) {
                   continue;
               }
               DecimalFormat df = new DecimalFormat("0");// 格式化 number String
                                                           // 字符
               SimpleDateFormat sdf = new SimpleDateFormat(
                       "yyyy-MM-dd HH:mm:ss");// 格式化日期字符串
               DecimalFormat nf = new DecimalFormat("0.00");// 格式化数字
               switch (cell.getCellType()) {
               case XSSFCell.CELL_TYPE_STRING:
               //  System.out.println(i + "行" + j + " 列 is String type");
                   value = cell.getStringCellValue();
                   break;
               case XSSFCell.CELL_TYPE_NUMERIC:
                   /*System.out.println(i + "行" + j
                           + " 列 is Number type ; DateFormt:"
                           + cell.getCellStyle().getDataFormatString());*/
                   if ("@".equals(cell.getCellStyle().getDataFormatString())) {
                       value = df.format(cell.getNumericCellValue());
                   } else if ("General".equals(cell.getCellStyle()
                           .getDataFormatString())) {
                       value = nf.format(cell.getNumericCellValue());
                   } else {
                       value = sdf.format(HSSFDateUtil.getJavaDate(cell
                               .getNumericCellValue()));
                   }
                   break;
               case XSSFCell.CELL_TYPE_BOOLEAN:
               //  System.out.println(i + "行" + j + " 列 is Boolean type");
                   value = cell.getBooleanCellValue();
                   break;
               case XSSFCell.CELL_TYPE_BLANK:
               //  System.out.println(i + "行" + j + " 列 is Blank type");
                   value = "";
                   break;
               default:
               //  System.out.println(i + "行" + j + " 列 is default type");
                   value = cell.toString();
               }
               if (value == null || "".equals(value)) {
                   continue;
               }
               linked.add(value);
           }
           list.add(linked);
       }
       return list;
   }

   /**
    * 读取Office 2007 excel
    * */
   private static List<List<Object>> read2007Excel(File file)
           throws IOException {
       List<List<Object>> list = new LinkedList<List<Object>>();
       // 构造 XSSFWorkbook 对象,strPath 传入文件路径
       XSSFWorkbook xwb = new XSSFWorkbook(new FileInputStream(file));
       // 读取第一章表格内容
       XSSFSheet sheet = xwb.getSheetAt(0);
       Object value = null;
       XSSFRow row = null;
       XSSFCell cell = null;
       int counter = 0;
       for (int i = sheet.getFirstRowNum(); counter < sheet
               .getPhysicalNumberOfRows(); i++) {
           row = sheet.getRow(i);
           if (row == null) {
               continue;
           } else {
               counter++;
           }
           List<Object> linked = new LinkedList<Object>();
           for (int j = row.getFirstCellNum(); j <= row.getLastCellNum(); j++) {
               cell = row.getCell(j);
               if (cell == null) {
                   continue;
               }
               DecimalFormat df = new DecimalFormat("0");// 格式化 number String
                                                           // 字符
               SimpleDateFormat sdf = new SimpleDateFormat(
                       "yyyy-MM-dd HH:mm:ss");// 格式化日期字符串
               DecimalFormat nf = new DecimalFormat("0.00");// 格式化数字
               switch (cell.getCellType()) {
               case XSSFCell.CELL_TYPE_STRING:
                   System.out.println(i + "行" + j + " 列 is String type");
                   value = cell.getStringCellValue();
                   break;
               case XSSFCell.CELL_TYPE_NUMERIC:
               /*  System.out.println(i + "行" + j
                           + " 列 is Number type ; DateFormt:"
                           + cell.getCellStyle().getDataFormatString());*/
                   if ("@".equals(cell.getCellStyle().getDataFormatString())) {
                       value = df.format(cell.getNumericCellValue());
                   } else if ("General".equals(cell.getCellStyle()
                           .getDataFormatString())) {
                       value = nf.format(cell.getNumericCellValue());
                   } else {
                       value = sdf.format(HSSFDateUtil.getJavaDate(cell
                               .getNumericCellValue()));
                   }
                   break;
               case XSSFCell.CELL_TYPE_BOOLEAN:
           //      System.out.println(i + "行" + j + " 列 is Boolean type");
                   value = cell.getBooleanCellValue();
                   break;
               case XSSFCell.CELL_TYPE_BLANK:
               //  System.out.println(i + "行" + j + " 列 is Blank type");
                   value = "";
                   break;
               default:
               //  System.out.println(i + "行" + j + " 列 is default type");
                   value = cell.toString();
               }
               if (value == null || "".equals(value)) {
                   continue;
               }
               linked.add(value);
           }
           list.add(linked);
       }
       return list;
   }

   public static void main(String[] args) {
       try {
           readExcel(new File("D:\\Java\\apache-tomcat-8.0.26\\webapps\\poi\\docs\\testRead.xls"));
           // readExcel(new File("D:\\test.xls"));
           /*
               String docsPath = request.getSession(true).getServletContext()
                       .getRealPath("docs");
               String fileName = "testRead.xls";
               String filePath = docsPath;
               if (EPlatform.Windows.equals(OSinfo.getOSname())) {
                   filePath = filePath + "\\" + fileName;
               } else {
                   filePath = filePath + "/" + fileName;
               }
               filePath = "E:\\testRead.xls";
               List<List<Object>> list = readExcel(new File(filePath));
               request.setAttribute("list", list);
               RequestDispatcher dispatcher = request
                       .getRequestDispatcher("/read.jsp");
               dispatcher.forward(request, response);
            */
       } catch (IOException e) {
           e.printStackTrace();
       }
   }
}

哪个故人
2016-09-29
知道答主
回答量:25
采纳率:100%
帮助的人:2.3万
展开全部
选 中 SQL数据库DB如:TestDB(右键)-->Tasks--》Import Data 下面你自己会了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sunzaixiang
2016-10-06 · TA获得超过345个赞
知道小有建树答主
回答量:159
采纳率:0%
帮助的人:152万
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式