- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想通过浏览按钮控件上传 Excel 文件。我不需要保存它。然后,单击一个按钮,如何在 Excel 中读取数据并将其显示在 GridView 中。我需要使用 MVC 完成此任务。
最佳答案
这是我修改后的答案:
1) 从 Microsoft 下载 OpenXML SDK
2) 创建一个空白的 MVC 5 项目,并将其命名为“MVCImportExcel”
3) 通过浏览到 SDK lib 子目录添加对 DocumentFormat.OpenXML 的引用
4) 添加对 WindowsBase 的引用
5) 创建名为“MyViewModel”的新模型
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
using System.ComponentModel.DataAnnotations;
namespace MVCImportExcel.Models
{
public class MyViewModel
{
[Required]
public HttpPostedFileBase MyExcelFile { get; set; }
public string MSExcelTable { get; set; }
}
}
6) 创建一个名为“HomeController”的新 Controller
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MVCImportExcel.Models;
using System.Data;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
using System.IO;
namespace MVCImportExcel.Controllers
{
public class HomeController : Controller
{
//
// GET: /Home/
public ActionResult Index()
{
var model = new MyViewModel();
return View(model);
}
[HttpPost]
public ActionResult Index(MyViewModel model)
{
if (!ModelState.IsValid)
{
return View(model);
}
DataTable dt = GetDataTableFromSpreadsheet(model.MyExcelFile.InputStream,false);
string strContent = "<p>Thanks for uploading the file</p>" + ConvertDataTableToHTMLTable(dt);
model.MSExcelTable = strContent;
return View(model);
}
public static DataTable GetDataTableFromSpreadsheet(Stream MyExcelStream, bool ReadOnly)
{
DataTable dt = new DataTable();
using (SpreadsheetDocument sDoc = SpreadsheetDocument.Open(MyExcelStream, ReadOnly))
{
WorkbookPart workbookPart = sDoc.WorkbookPart;
IEnumerable<Sheet> sheets = sDoc.WorkbookPart.Workbook.GetFirstChild<Sheets>().Elements<Sheet>();
string relationshipId = sheets.First().Id.Value;
WorksheetPart worksheetPart = (WorksheetPart)sDoc.WorkbookPart.GetPartById(relationshipId);
Worksheet workSheet = worksheetPart.Worksheet;
SheetData sheetData = workSheet.GetFirstChild<SheetData>();
IEnumerable<Row> rows = sheetData.Descendants<Row>();
foreach (Cell cell in rows.ElementAt(0))
{
dt.Columns.Add(GetCellValue(sDoc, cell));
}
foreach (Row row in rows) //this will also include your header row...
{
DataRow tempRow = dt.NewRow();
for (int i = 0; i < row.Descendants<Cell>().Count(); i++)
{
tempRow[i] = GetCellValue(sDoc, row.Descendants<Cell>().ElementAt(i));
}
dt.Rows.Add(tempRow);
}
}
dt.Rows.RemoveAt(0);
return dt;
}
public static string GetCellValue(SpreadsheetDocument document, Cell cell)
{
SharedStringTablePart stringTablePart = document.WorkbookPart.SharedStringTablePart;
string value = cell.CellValue.InnerXml;
if (cell.DataType != null && cell.DataType.Value == CellValues.SharedString)
{
return stringTablePart.SharedStringTable.ChildElements[Int32.Parse(value)].InnerText;
}
else
{
return value;
}
}
public static string ConvertDataTableToHTMLTable(DataTable dt)
{
string ret = "";
ret = "<table id=" + (char)34 + "tblExcel" + (char)34 + ">";
ret+= "<tr>";
foreach (DataColumn col in dt.Columns)
{
ret += "<td class=" + (char)34 + "tdColumnHeader" + (char)34 + ">" + col.ColumnName + "</td>";
}
ret+= "</tr>";
foreach (DataRow row in dt.Rows)
{
ret+="<tr>";
for (int i = 0;i < dt.Columns.Count;i++)
{
ret+= "<td class=" + (char)34 + "tdCellData" + (char)34 + ">" + row[i].ToString() + "</td>";
}
ret+= "</tr>";
}
ret+= "</table>";
return ret;
}
}
}
7) 在Home下新建一个 View ,命名为“Index”
@model MVCImportExcel.Models.MyViewModel
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title></title>
<style type="text/css">
#tblExcel
{
width: 1000px;
border: none;
background-color: #000000;
}
.tdColumnHeader
{
padding: 2px 2px 2px 2px;
text-align: center;
font-family: Verdana;
font-size: 12px;
font-weight: bold;
background-color: cornflowerblue;
color: #FFFFFF;
}
.tdCellData
{
padding: 2px 2px 2px 2px;
font-family: Verdana;
font-size: 12px;
background-color: aqua;
color: #000000;
}
</style>
</head>
<body>
@using (Html.BeginForm(null,null,FormMethod.Post,new { enctype = "multipart/form-data" }))
{
<div>
@Html.LabelFor(x => x.MyExcelFile)
@Html.TextBoxFor(x => x.MyExcelFile, new { type = "file" })
@Html.ValidationMessageFor(x => x.MyExcelFile)
</div>
<button type="submit">Upload</button>
<br /><br />
@Html.Raw(Model.MSExcelTable)
}
</body>
</html>
正如我在评论中所说,这仅适用于 XLSX 文件。希望这对您或其他人有所帮助。
:) 大卫
关于c# - 如何在不将 Excel 文件存储在任何地方的情况下读取 Excel 文件并将其数据填充到 MVC 的网格中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27108848/
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
操作无法完成。 Places API 库中发生内部错误。如果您认为此错误代表错误,请使用我们社区和支持页面 (https://developers.google.com/places/support)
我正在尝试在我的项目中使用 google places,我将其设置在 fragment 中而不是 Activity 中,我的自动完成 fragment 在 fragment 中。但是,当我尝试搜索它时
我的目的是使用R来查询google api。 我有一个地址和名称列表(属于商店、餐馆等),我需要为每个地址和名称存储: “纬度”、“经度”、“业务类型” 我的想法是使用 google place ap
我正在寻找设置一个自动完成的谷歌地方小部件。 我有一个带有“searchFieldText”id 的输入类型文本。 这是我的 JS 代码: var inputsec = document.getEle
是否可以使用图形 API(或地址/ zip )按纬度/经度和半径获取地点?我在文档中的任何地方都看不到它 最佳答案 搜索 URL 的以下格式将返回某个位置附近的地点列表: https://graph.
我正在探索 Google API,主要是 Places API。由于对 Google Places API 的请求数限制为 100,000,因此我正在寻找方法来最大限度地减少发送到 API 的请求数。
伙计们,我在我的应用程序中有一个功能,可以使用 GetFiles 在特定目录中搜索特定文件。方法 System.IO.Directory.GetFiles(string path, string
我已经在 Laravel 5.3 上使用 where 查询成功创建了许多函数,但是这次发生了一些奇怪的事情。 public function show($id){ $artikel = Art
我正在为我的 iPhone 应用程序使用 Facebook 图形 API 来获取附近地点的列表,我使用带有一些参数的“搜索”请求。我得到的响应是一个包含以下信息的地点列表:“纬度”、“经度”、“名称”
我有一个 Android 应用程序,我在其中使用 Google map 显示附近的地方,如加油站、药店等。我正在使用 map 和地点 API。 https://maps.googleapis.com/
我是一名优秀的程序员,十分优秀!