C#第三次作业:在c#中导入excel,并生成html文件


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.OleDb;
using System.IO;


namespace readFile
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
       

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog openFiledialog1 = new OpenFileDialog();
            openFiledialog1.Filter = "Excel文件|*.xls";           //打开excel文件,并读取内容  
            if (openFiledialog1.FilterIndex == 1 && openFiledialog1.ShowDialog() == DialogResult.OK)
            {
                DataSet ds = ExcelToDS(openFiledialog1.FileName);
                PrintRows(ds);
            }
        }
        public DataSet ExcelToDS(String path)
        {
            //存取excel数据  
            string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + @path + ";" + "Extended Properties=Excel 8.0;";
            OleDbConnection conn = new OleDbConnection(strConn);
            conn.Open();
            string strExcel = "";
            OleDbDataAdapter myCommand = null;
            DataSet ds = null;
            strExcel = "select 姓名,作业网址  from [sheet1$] ";
            myCommand = new OleDbDataAdapter(strExcel, strConn);
            DataTable table1 = new DataTable();
            ds = new DataSet();
            myCommand.Fill(table1);

            ds.Tables.Add(table1);
            myCommand.Fill(table1);
            dataGridView1.DataSource = table1;    //数据显示在datagridview上  
            return ds;
        }
        private void PrintRows(DataSet dataset){
            string strhtmlFile=@"e:/1.html";
            if(File.Exists(strhtmlFile)==false){
            FileStream myFs=new FileStream(strhtmlFile,FileMode.Create);
                myFs.Close();
            
            }
            int count=0;
            using(StreamWriter sw=new StreamWriter(strhtmlFile,false,Encoding.Default)){
                sw.WriteLine("<html>\r\n <head>\r\n <title>我们的网页</title>\r\n </head> \r\n <body>");
            String strName="小小";
            String strWebsite="http://791078306.qzone.qq.com";
                foreach(DataTable table in dataset.Tables){
                    foreach(DataRow row in table.Rows){
                              foreach(DataColumn column in table.Columns){
                              if(column.ColumnName=="姓名")
                                  strName=(String) row[column];
                              if(column.ColumnName=="作业网址")
                                  strWebsite =(String) row[column]; 
                              }
                              sw.WriteLine(@"<a href=""" + strWebsite + @""">        " + strName + @"</a> <br />");
                       
                            
                
                }
                }
                sw.WriteLine("</body> \r\n </html>");
            
            }}
    }
}

                                                                                                               源代码

  

                                                                  窗体首页

                                            在窗体中选择出excel文件中的姓名和链接

                                           打开excel文件进行选择




                                           生成html文件


                                                用浏览器打开生成的html文件

                                   打开html文件中某个链接

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值