3

我检查了上面的注释,但它们没有帮助。我使用 VS2008 for ASP.Net 和 MS Access 2010 作为数据库。我需要通过 ASP 网页将数据从 excel 上传到数据库。

但我收到如下错误:

“Microsoft Jet 数据库引擎无法打开文件 'C:\Users\poonamj\Documents\Visual Studio 2008\Projects\SmartTool\SmartTool\Uploads\'。它已被其他用户以独占方式打开,或者您需要权限才能查看其数据。”

    using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.IO;
using System.Collections.Generic;
using System.Data.OleDb;

namespace SmartTool
{

    public partial class WebForm2 : System.Web.UI.Page
    {
        protected void UploadFile(object sender, EventArgs e)
        {
            string fileName = Path.GetFileName(FileUpload1.PostedFile.FileName);
            FileUpload1.PostedFile.SaveAs(Server.MapPath("~/Uploads/") + fileName);
            Response.Redirect(Request.Url.AbsoluteUri);
        }
        protected void DownloadFile(object sender, EventArgs e)
        {
            string filePath = (sender as LinkButton).CommandArgument;
            Response.ContentType = ContentType;
            Response.AppendHeader("Content-Disposition", "attachment; filename=" + Path.GetFileName(filePath));
            Response.WriteFile(filePath);
            Response.End();
        }
        protected void DeleteFile(object sender, EventArgs e)
        {
            string filePath = (sender as LinkButton).CommandArgument;
            File.Delete(filePath);
            Response.Redirect(Request.Url.AbsoluteUri);
        }
        protected void ViewFile(object sender, EventArgs e)
        {
            //string filePath = (sender as LinkButton).CommandArgument;
           // File.ReadAllLines(filePath);
            //GridView2.DataSource = File.ReadAllLines(filePath);
            //GridView2.DataBind();
            //string[] content = File.ReadAllLines(filePath);

            //GridView2.DataSource = content.
           // OleDbConnection conn = new OleDbConnection();
           // conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:/Users/poonamj/Documents/Visual Studio 2008/Projects/SmartTool/SmartTool/fallout.accdb;User id=admin;Password=";
           // conn.Open();

            string Access = Server.MapPath("App_Data/fallout.accdb");
            string Excel = Server.MapPath("~/Uploads/");
            string connect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Excel + ";Extended Properties=Excel 8.0;Mode=12;";
            using (OleDbConnection conn = new OleDbConnection(connect))
            {
                using (OleDbCommand cmd = new OleDbCommand())
                {
                    cmd.Connection = conn;
                    cmd.CommandText = "SELECT * INTO [MS Access;Database=" + Access + "].[New Table] FROM [Sheet1$]";
                    conn.Open();
                    cmd.ExecuteNonQuery();
                    conn.Close();
                }
            }

        }

        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                string[] filePaths = Directory.GetFiles(Server.MapPath("~/Uploads/"));
                List<ListItem> files = new List<ListItem>();
                foreach (string filePath in filePaths)
                {
                    files.Add(new ListItem(Path.GetFileName(filePath), filePath));
                }
                GridView1.DataSource = files;
                GridView1.DataBind();
            }

        }




    }
}
4

3 回答 3

2

我想发表评论,但不能。

您检查了以下内容吗?每个人都列出了可以帮助您的可能解决方案。

微软官方支持页面:http: //support.microsoft.com/kb/306269

此外,请尝试使用包含数据源文件名的完整路径。以下是有缺陷的:

 string Excel = Server.MapPath("~/Uploads/");

您想在Uploads/.

于 2013-02-20T16:48:23.540 回答
0

我过去曾使用过这样的工具来解决问题:http ://www.filehippo.com/download_unlocker/ ,更重要的是它是对目录功能的视图锁定。

我不知道,如果我想太多了,但是 'C:\Users\poonamj\Documents\Visual Studio 2008\Projects\SmartTool\SmartTool\Uploads\' 是一个目录,它似乎需要一个文件。

例如,“C:\Users\poonamj\Documents\Visual Studio 2008\Projects\SmartTool\SmartTool\Uploads\db.mdb”是文件的路径。

于 2013-02-20T16:52:20.807 回答
0

您没有为 Excel 指定文件名,这导致了异常。

string Excel = Server.MapPath("~/Uploads/MyFile.xls");
string connect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Excel + ";Extended Properties=Excel 8.0;Mode=12;";

将文件名添加到 Excel,应该可以解决此问题。

于 2013-02-20T17:21:38.227 回答