通用导出excel

Posted ruijie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通用导出excel相关的知识,希望对你有一定的参考价值。

自动查询下标

fileds=[id,name,sex]
for index,filed in enumerate(fileds):#enumerate,可以查询列表每个字段的下标
    print(index,filed)
# 结果:
# 0 id
# 1 name
# 2 sex

 

通用导出excel-只导出字段

import pymysql,xlwt
#
# def export_excel(table_name):
#     host,user,passwd,db=‘192.168.0.12‘,‘root‘,‘myjcyf‘,‘us_sys‘
#     coon=pymysql.connect(host=host,user=user,passwd=passwd,db=db,port=3306,charset=‘utf8‘)
#     cur=coon.cursor() #建立游标
#     sql=‘select * from %s;‘%table_name
#     cur.execute(sql)#执行sql
#     fileds=[filed[0] for filed in cur.description]#所有字段
#     all_date=cur.fetchall()
#     book=xlwt.Workbook()
#     sheet=book.add_sheet(‘sheet1‘)
#     col=0
#     for filed in fileds:
#         sheet.write(0,col,filed)
#         col+=1
#     book.save(‘%s.xls‘%table_name)
# export_excel(‘us_sys.stu‘)#导出excel

以上是关于通用导出excel的主要内容,如果未能解决你的问题,请参考以下文章

JAVA原始的导出excel文件,快捷通用 方便 还能够导出word文档哦

Excel通用类工具

通用导出excel

(gridcontrol等)通用导出excel z

MVC NPOI Linq导出Excel通用类

使用While循环导出Excel