この記事では、ASP.NET MVCアプリケーションでExcelスプレッドシートを作成、読み取り、編集する方法を学習します。このために、以下に示すように、Excelファイルを表示および編集するための機能豊富なグリッドコントロールで構成されるスプレッドシートアプリケーションを作成します。
ASP.NET MVCスプレッドシートアプリケーションを作成するための.NET API
ASP.NET MVCでスプレッドシートアプリケーションを作成するには、Aspose.Cells.GridJsを使用します。 APIを使用すると、Webベースのアプリケーションを作成して、スプレッドシートドキュメントをすばやく簡単に表示または編集できます。さらに、一般的なスプレッドシート(XLS、XLSX、XLSM、XLSB、CSV、SpreadsheetML、ODS)ファイル形式(続きを読む)をインポートできます。さらに、組み込み関数だけでなくカスタム数式も計算するための強力で豊富な数式計算エンジンを提供します。 NuGetからAspose.Cells.GridJsをインストールできます。
PM> Install-Package Aspose.Cells.GridJs
ASP.NET MVCスプレッドシートアプリケーションを作成する手順
以下は、ASP.NET MVCでWebベースのスプレッドシートアプリケーションを作成する手順です。
- VisualStudioで新しいASP.NET Core Webアプリ(Model-View-Controller)を作成します。
- NuGetからAspose.Cells.GridJsをインストールします。
- 次のコードをHomeController.csに挿入します。
public class HomeController : Controller
{
public IActionResult Index()
{
return RedirectToRoute("default",
new { controller = "GridJs2", action = "List" });
}
public IActionResult Privacy()
{
return Redirect("https://about.aspose.app/legal/privacy-policy");
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
- ModelsフォルダーにTestConfig.csという名前の新しいクラスを作成し、次のコードを追加します(環境に応じてフォルダーパスを変更します)。
public class TestConfig
{
///<summary>
///ワークブックファイルを含むディレクトリ
///</summary>
internal static String ListDir = @"D:\tmpdel\storage\wb";
///<summary>
///ファイルを保存する一時ディレクトリ
///</summary>
internal static String TempDir = @"D:\tmpdel\storage\wb\tmp\";
}
- ModelsフォルダーにLocalFileCache.csという名前の新しいクラスを作成し、次のコードを追加します。
/* Add the following namespaces as well.
using Aspose.Cells.GridJs;
using System.IO;
*/
public class LocalFileCache : GridCacheForStream
{
///<summary>
///このメソッドを実装してキャッシュを保存し、キーIDを使用してストリームをキャッシュオブジェクトに保存します。
///</summary>
///<param name="s">ソースストリーム</param>
///<param name="uid">キーID。</param>
public override void SaveStream(Stream s, String uid)
{
String filepath = Path.Combine(Config.FileCacheDirectory + Path.DirectorySeparatorChar + "streamcache", uid.Replace('/', '.'));
using (FileStream fs = new FileStream(filepath, FileMode.Create))
{
s.Position = 0;
s.CopyTo(fs);
}
}
///<summary>
///このメソッドを実装してキーuidを使用してロードキャッシュし、キャッシュオブジェクトからストリームを返します。
///</summary>
///<param name="uid">キーID</param>
///<returns>キャッシュからのストリーム</returns>
public override Stream LoadStream(String uid)
{
String filepath = Path.Combine(Config.FileCacheDirectory + Path.DirectorySeparatorChar + "streamcache", uid.Replace('/', '.'));
FileStream fs = new FileStream(filepath, FileMode.Open);
return fs;
}
///<summary>
///ファイルを取得するためにアクションコントローラにURLを実装します
///</summary>
///<param name="uid">キーID</param>
///<returns></returns>
public override String GetFileUrl(string uid)
{
return "/GridJs2/GetFile?id=" + uid;
}
}
- GridJs2Controller.csという名前の新しいコントローラーを作成し、次のコードを追加します。
/* Add the following namespaces as well.
System.IO;
System.Collections;
System.Threading;
Microsoft.AspNetCore.StaticFiles;
Aspose.Cells.GridJs;
*/
[Route("[controller]/[action]")]
[ApiController]
public class GridJs2Controller : Controller
{
public ActionResult List()
{
//this.ViewBag.list=新しいリスト<object>();
ArrayList dirlistsss = new ArrayList();
ArrayList filelistsss = new ArrayList();
DirectoryInfo dir = new DirectoryInfo(TestConfig.ListDir);
//ディレクトリの下のファイルを検索します
FileInfo[] fi = dir.GetFiles();
foreach (FileInfo f in fi)
{
String fname = f.FullName.ToString();
dirlistsss.Add(fname);
filelistsss.Add(Path.GetFileName(fname));
}
// ViewData。
ViewBag.dirlist = dirlistsss;
ViewBag.filelist = filelistsss;
return View("~/Views/Home/list.cshtml");
}
// GET:/ GridJs2 / DetailJson?filename =
public ActionResult DetailFileJson(string filename)
{
String file = Path.Combine(TestConfig.ListDir, filename);
return DetailJson(file);
}
private ActionResult DetailJson(string path)
{
GridJsWorkbook wbj = new GridJsWorkbook();
try
{
GridInterruptMonitor m = new GridInterruptMonitor();
wbj.SetInterruptMonitorForLoad(m, 50 * 1000);
Thread t1 = new Thread(new ParameterizedThreadStart(InterruptMonitor));
t1.Start(new object[] { m, 90 * 1000 });
using (FileStream fs = new FileStream(path, FileMode.Open))
{
wbj.ImportExcelFile(fs, GridJsWorkbook.GetGridLoadFormat(Path.GetExtension(path)));
}
}
catch (Exception ex)
{
if (ex is GridCellException)
{
return Content(wbj.ErrorJson(((GridCellException)ex).Message + ((GridCellException)ex).Code), "text/plain", System.Text.Encoding.UTF8);
}
return Content(wbj.ErrorJson(ex.Message), "text/plain", System.Text.Encoding.UTF8);
}
//File(stream、 "application / octet-stream"、 "streamfile");を返します。
return Content(wbj.ExportToJson(), "text/plain", System.Text.Encoding.UTF8);
}
private static void InterruptMonitor(object o)
{
object[] os = (object[])o;
try
{
Thread.Sleep((int)os[1]);
((GridInterruptMonitor)os[0]).Interrupt();
}
catch (ThreadInterruptedException e)
{
Console.WriteLine("Succeeded for load in give time.");
}
}
[HttpPost]
// 投稿:/ GridJs2 / UpdateCell
public ActionResult UpdateCell()
{
string p = HttpContext.Request.Form["p"];
string uid = HttpContext.Request.Form["uid"];
GridJsWorkbook gwb = new GridJsWorkbook();
String ret = gwb.UpdateCell(p, uid);
return Content(ret, "text/plain", System.Text.Encoding.UTF8);
}
// GET:/ GridJs2 / Xspreadtml
public ActionResult Xspreadtml(String filename)
{
return Redirect("~/xspread/index.html?file=" + filename);
}
// GET:/ GridJs2 / Image?uid =&id =
public FileResult Image()
{
string fileid = HttpContext.Request.Query["id"];
string uid = HttpContext.Request.Query["uid"];
return new FileStreamResult(GridJsWorkbook.GetImageStream(uid, fileid), "image/png");
}
//GridCacheForStreamを使用する場合は、このAPIを設定する必要があります
// GET:/ GridJs2 / ImageUrl?uid =&id =
public JsonResult ImageUrl(string id, string uid)
{
return new JsonResult(GridJsWorkbook.GetImageUrl(uid, id, "."));
}
private string GetMimeType(string FileName)
{
string contentType;
new FileExtensionContentTypeProvider().TryGetContentType(FileName, out contentType);
return contentType ?? "application/octet-stream";
}
// GET:/ GridJs2 / GetFile?id
public FileResult GetFile(string id)
{
string fileid = id;
string mimeType = GetMimeType(fileid);
return File(GridJsWorkbook.CacheImp.LoadStream(fileid), mimeType, fileid.Replace('/', '.'));
}
///<summary>
/// ダウンロードファイル
///</summary>
///<returns></returns>
[HttpPost]
public JsonResult Download()
{
string p = HttpContext.Request.Form["p"];
string uid = HttpContext.Request.Form["uid"];
string filename = "123.xlsx";
GridJsWorkbook wb = new GridJsWorkbook();
wb.MergeExcelFileFromJson(uid, p);
GridInterruptMonitor m = new GridInterruptMonitor();
wb.SetInterruptMonitorForSave(m);
Thread t1 = new Thread(new ParameterizedThreadStart(InterruptMonitor));
t1.Start(new object[] { m, 30 * 1000 });
try
{
wb.SaveToCacheWithFileName(uid, filename, null);
}
catch (Exception ex)
{
if (ex is GridCellException)
{
return Json(((GridCellException)ex).Message + ((GridCellException)ex).Code);
}
}
if (filename.EndsWith(".html"))
{
filename += ".zip";
}
String fileurl = GridJsWorkbook.CacheImp.GetFileUrl(uid + "/" + filename);
return new JsonResult(fileurl);
}
}
- Startup.csのConfigure関数に次のコードを挿入し、ライセンスファイルのパスを設定します(無料でライセンスを取得)。
/* Add the following namespace as well.
using Aspose.Cells.GridJs;
*/
License l = new License();
LocalFileCache mwc = new LocalFileCache();
GridJsWorkbook.CacheImp = mwc;
l.SetLicense(@"D:\licenses\Conholdate.Total.Product.Family.lic");
- 次のコードをViews/Home/index.cshtmlに挿入します。
@{
ViewData["Title"] = "Home Page";
}
- Views/Home/ フォルダーの下にlist.cshtmlという名前の新しいビューを作成し、次のコードを挿入します。
<div id="body" style=" width: 800px; height: 800px; border: 1px solid; overflow-y: scroll; SCROLLBAR-BASE-COLOR: #8ccc8c;">
@foreach (var item in ViewBag.filelist)
{
<a href="Xspreadtml?filename=@item" target="_blank"><em> @item </em> </a> <br />
}
</div>
10.以下に示すように、GitHubからxspreadフォルダーをダウンロードし、wwwrootフォルダーの下に配置します。
- wwwroot/xspread/index.htmlで指定されているポート番号が、プロジェクトのポート番号と同じであることを確認してください。
12.アプリケーションをビルドし、お気に入りのブラウザーで実行します。
デモ-ASP.NET MVCでExcelファイルを作成または編集する
以下は、作成したASP.NET MVCスプレッドシートアプリケーションのデモンストレーションです。
ソースコードをダウンロード
スプレッドシートアプリケーションの完全なソースコードは、GitHubからダウンロードできます。
無料ライセンスを取得する
一時ライセンスを使用すると、評価の制限なしにAspose.Cells.GridJsを使用できます。
結論
この記事では、Excelやその他のスプレッドシートファイルを作成および編集するためのさまざまな機能を備えたASP.NET MVCスプレッドシートアプリケーションを作成する方法を学習しました。このアプリケーションをカスタマイズすることも、独自のWebアプリケーションに統合することもできます。ご不明な点がございましたら、フォーラムまでお気軽に投稿してください。