自已摸索实现了对excel简单的上传和下载并做了一个封装类,下面分享一下. 先去官网:http://npoi.codeplex.com/下载需要引入dll(可以选择.net2.0或者.net4.0的dll),然后在网站中添加引用. 1.定义tools工具类:工具类封装了对excel的上传和下载功能 public class Tools { #region 打开保存excel对话框返回文件名 public static string SaveExcelFileDialog() { var sfd
环境:MySQLdb openpyxl模块 python去zabbix的mysql数据库中取交换机不同时间段的进出口流量,然后写入excel中,每天cron执行,每周四邮件发送.(代码中第一行必须加上,不然crontab执行不了,或者在crontab时指明环境变量) #!/usr/local/bin/python2.7 #_*_coding:utf-8_*_ import MySQLdb import time from datetime import datetime from datetim
C#实现写入Excel表 using System; using System.Reflection; using System.IO; using Microsoft.Office.Interop.Excel; namespace Test { class Program { public static bool WriteXls(string filename) { //启动Excel应用程序 Microsoft.Office.Interop.Excel.Application xls =