# -*- coding:utf-8 -*-
from selenium import webdriver
import xlrd
#讀取檔案路徑
file_path=r'e:\練習讀取excel用.xlsx'
#獲取檔案資料
data=xlrd.open_workbook(file_path)
#獲取sheet
sheet_data=data.sheet_by_name('sheet1')
#獲取所有行
#full_row=sheet_data.nrows
#獲取所有列
#full_col=sheet_data.ncols
#讀取第一行資料
rows1=sheet_data.row_values(0)
#讀取第一列資料
cols1=sheet_data.col_values(0)
#讀取第二行第三列的值
number1=sheet_data.cell_value(1,2)
#列印資料
print(rows1)
print(cols1)
print(number1)
讀取Excel資料
方法2 相當簡單,excel就像資料庫,每個sheet就是乙個table.microsoft.jet.oledb驅動.之後是datareader迴圈,或dataset處理都非常簡單.注意 資料型別的轉換 region set connection string strconn provider mi...
讀取Excel資料
excel2007的連線字串與excel2003的不同。datatable tbsheetname connection.getoledbschematable oledbschemaguid.tables,null 用來獲得sheet的名字 using system using system.io...
讀取excel資料
首先安裝npoi擴充套件包,開啟 管理nuget程式包 搜尋npoi。安裝 1 獲取前台fileupload控制項上傳的資料流 npoi.hssf.usermodel.hssfworkbook b new npoi.hssf.usermodel.hssfworkbook this.file1.pos...