0

此代码运行正确,可使用“APACHE POI 库”将数据从 excel 文件插入 MSACCESS 表,但未插入值。

代码未显示任何错误,但 tt 在运行时打印“无法插入.......”:

在这里,我使用 DSN 连接到 MSACCESS 数据库。
NETBEANS IDE

DSN:amandsn
MS Office 2007 访问表:学生
MS Office 2007 Excel 文件:“myexcel.xls”,由 3 列组成,即姓名、年级和主题以及我想插入到 MSACCESS 表中的数据。

    <%@ page language="java" import="java.sql.*" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

    <%@ page import ="java.util.Date" %>
    <%@ page import ="java.io.*" %>
    <%@ page import ="java.io.FileNotFoundException" %>
    <%@ page import ="java.io.IOException" %>
    <%@ page import ="java.util.Iterator" %>
    <%@ page import ="java.util.ArrayList" %>

    // Using Apache POI Libraries
    <%@ page import ="org.apache.poi.hssf.usermodel.HSSFCell" %>
    <%@ page import ="org.apache.poi.hssf.usermodel.HSSFRow" %>
    <%@ page import ="org.apache.poi.hssf.usermodel.HSSFSheet" %>
    <%@ page import ="org.apache.poi.hssf.usermodel.HSSFWorkbook" %>
    <%@ page import ="org.apache.poi.poifs.filesystem.POIFSFileSystem" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Insert title here</title>
    </head>
    <body>

    <%

   Connection con=null;
   Statement st =null;
   PreparedStatement ps=null;    


   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
   con=DriverManager.getConnection("jdbc:odbc:amandsn");
   st=con.createStatement();


   %>  


   <%

   try {      
        String fileName="myexcel.xls";
        //Read an Excel File and Store in a ArrayList
        ArrayList dataHolder=readExcelFile(fileName);
        // Print the data read
        // PrintCellDataToConsole(dataHolder);

        String query="insert into Student values(?,?,?)";

        ps=con.prepareStatement(query);
        int count=0;
        ArrayList cellStoreArrayList=null;
        //For inserting into database
        for (int i=1;i < dataHolder.size(); i++) {
          cellStoreArrayList=(ArrayList)dataHolder.get(i);
          ps.setString(1,((HSSFCell)cellStoreArrayList.get(0)).toString());
          ps.setString(2,((HSSFCell)cellStoreArrayList.get(1)).toString());
          ps.setString(3,((HSSFCell)cellStoreArrayList.get(2)).toString());
          count= ps.executeUpdate();
          out.println(((HSSFCell)cellStoreArrayList.get(2)).toString() + "\t");
       }

//For checking data is inserted or not?
if(count>0)
   { %>
           Following details from Excel file have been inserted in student table of database
               <table>
                   <tr>
                       <th>Name</th>
                       <th>Grade</th>
                       <th>Subject</th>
                   </tr>

     <% for (int i=1;i < dataHolder.size(); i++) {
        cellStoreArrayList=(ArrayList)dataHolder.get(i);
     %>
        <tr>
           <td><%=((HSSFCell)cellStoreArrayList.get(0)).toString() %></td>
           <td><%=((HSSFCell)cellStoreArrayList.get(1)).toString() %></td>
           <td><%=((HSSFCell)cellStoreArrayList.get(2)).toString() %></td>
        </tr>
     <%}
   }
else
   { %>
      <center> Not able to insert.......</center>

<% }
    }
    catch(Exception e1){e1.printStackTrace(); }

%>

    <%!

   public static ArrayList readExcelFile(String fileName)
   {
       /** --Define a ArrayList
           --Holds ArrayList Of Cells
       */
       ArrayList cellArrayLisstHolder = new ArrayList();

       try{
           /** Creating Input Stream**/
           FileInputStream myInput = new FileInputStream(fileName);

           /** Create a POIFSFileSystem object**/
           POIFSFileSystem myFileSystem = new POIFSFileSystem(myInput);

           /** Create a workbook using the File System**/
           HSSFWorkbook myWorkBook = new HSSFWorkbook(myFileSystem);

           /** Get the first sheet from workbook**/
           HSSFSheet mySheet = myWorkBook.getSheetAt(0);           


           /** We now need something to iterate through the cells.**/
           Iterator rowIter = mySheet.rowIterator();
           while(rowIter.hasNext()){
              HSSFRow myRow = (HSSFRow) rowIter.next();
              Iterator cellIter = myRow.cellIterator();
              ArrayList cellStoreArrayList=new ArrayList();
              while(cellIter.hasNext()){
                 HSSFCell myCell = (HSSFCell) cellIter.next();
                 cellStoreArrayList.add(myCell);

           }
          cellArrayLisstHolder.add(cellStoreArrayList);
       }
    }catch (Exception e){e.printStackTrace(); }
    return cellArrayLisstHolder;
    }%>   
   </table>
  </body>
</html>
4

1 回答 1

0
count= ps.executeUpdate();

将始终分配count为 0,这就是 else 部分将被执行并显示的原因Not able to insert...

相反,将上述语句包装try-catch如下,count如果插入成功,则更新值

try {
     ps.executeUpdate();
     count++; 
} catch(Exception e) {
}
于 2013-06-14T10:28:13.730 回答