Sometimes in our actual work, we need to import data from Excel into the database. If the amount of data is hundreds or even more, I believe that a little bit of ctrlc and ctrlv is not a solution. Here we take the MySQL database as an example to store the data in Excel into the database. My idea is: first take out the data from Excel, and then transfer the data to the database. To operate Excel, you need jxl.jar, and to operate the database, you can use the most basic jdbc, which requires the jar package mysql-connector-java-5.0.8-bin.jar. Let's take a look at the Excel screenshot: Let’s look at the final rendering: The entire code is posted below: package browser; import java.io.File; import java.sql.*; import jxl.Cell; import jxl.Sheet; import jxl.Workbook; public class PushExcelToMysql { public static void main(String[] args) throws Exception { Sheet sheet; Workbook workbook; Cell [][] cells=new Cell[3][3]; try{ workbook = Workbook.getWorkbook(new File("E:\\lalala.xls")); sheet = workbook.getSheet(0); for(int i=0;i<3;i++){ for(int j=0;j<3;j++){ cells[i][j]=sheet.getCell(j,i); } } }catch (Exception e) { e.printStackTrace(); } try{ Class.forName("com.mysql.jdbc.Driver"); }catch(Exception e){ e.printStackTrace(); } Connection c=DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test?characterEncoding=UTF-8", "root","root"); String sql="insert into tosql(name,age,sex) values(?,?,?)"; PreparedStatement ps=c.prepareStatement(sql); for(int i=0;i<3;i++){ ps.setString(1, cells[i][0].getContents()); ps.setString(2, cells[i][1].getContents()); ps.setString(3, cells[i][2].getContents()); ps.execute(); } System.out.println("ok"); } } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: WeChat applet silent login and maintenance of custom login state detailed explanation
>>: A brief introduction to Tomcat's overall structure
Preface Recently, due to work reasons, I was work...
Online Preview https://jsrun.pro/AafKp/ First loo...
1. Basic lines 2. Special effects (the effects ar...
<br />This section introduces how to impleme...
1. Run the .sh file You can run it directly using...
This time I will talk about the skills of develop...
Pseudo-elements and pseudo-classes Speaking of th...
The project interacts with the server, accesses t...
When to install If you use the protoc command and...
The VMware Workstation Pro version I use is: 1. F...
The HTTP status code is a 3-digit code used to in...
HTML img tag: defines an image to be introduced in...
Introduction to Swap Swap (i.e. swap partition) i...
Preface The mv command is the abbreviation of mov...
This seems to be no longer possible with the new ...