asp.net下将Excel转成XML档的实现代码分享


代码如下:
if (this.FileUpload1.PostedFile != null)
{
string filename = this.FileUpload1.FileName.ToString();
string path = @Server.MapPath(“../File/”) + filename;
this.FileUpload1.PostedFile.SaveAs(path);
//读取用户上传的Excle文件
string conn=”Provider = Microsoft.Jet.OLEDB.4.0 ;Data Source ='”+path+”‘;Extended Properties=Excel 8.0″;
OleDbConnection olecon = new OleDbConnection(conn);
olecon.Open();
//注意表名,打开Excel文件后,最底部分页的Excle免费精选名字大全,
//默认是$Sheet1,$Sheet2,$Sheet3
string sql = “select * from [$Sheet1]”;
OleDbDataAdapter oleda = new OleDbDataAdapter(sql,conn);
oleda.Fill(ds);
olecon.Close();

this.GridView1.DataSource = ds;
this.GridView1.DataBind();

string file_name = “20091126002.xml”;
string xml_path = @Server.MapPath(“../Reports/xml/”) + file_name;

ds.WriteXml(xml_path);
ds.Dispose();
}

—-想了解更多的linux相关异常处理怎么解决关注<计算机技术网(www.ctvol.com)!!>



本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/htmltutorial/73151.html

(0)
上一篇 2020年4月18日
下一篇 2020年4月18日

精彩推荐