读取Excel数据

发布于 2024-09-04 10:50:33 字数 45 浏览 3 评论 0原文

如何读取数字格式的Excel数据;;;即使用电子表格设备在 C# 中隐藏值。

How to read Excel data having Number format ;;; ie hidden value in C# using spreadsheet gear.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不可一世的女人 2024-09-11 10:50:33

我不确定我是否理解你的问题。此代码写入单元格的格式化值、数字格式和未格式化值:

using System;

namespace WriteFormattedCellWithSpreadsheetGear
{
    class Program
    {
        static void Main(string[] args)
        {
            var workbook = SpreadsheetGear.Factory.GetWorkbook(@"C:\tmp\MyWorkbook.xlsx");
            var worksheet = workbook.Worksheets[0];
            var a1 = worksheet.Cells["A1"];
            // Write the formatted data
            Console.WriteLine("Text={0}", a1.Text);
            // Write the number format
            Console.WriteLine("NumberFormat={0}", a1.NumberFormat);
            // Write the raw data
            Console.WriteLine("Value={0}", a1.Value);
        }
    }
}

I am not sure that I understand your question. This code writes the formatted value of a cell, the number format and the unformatted value:

using System;

namespace WriteFormattedCellWithSpreadsheetGear
{
    class Program
    {
        static void Main(string[] args)
        {
            var workbook = SpreadsheetGear.Factory.GetWorkbook(@"C:\tmp\MyWorkbook.xlsx");
            var worksheet = workbook.Worksheets[0];
            var a1 = worksheet.Cells["A1"];
            // Write the formatted data
            Console.WriteLine("Text={0}", a1.Text);
            // Write the number format
            Console.WriteLine("NumberFormat={0}", a1.NumberFormat);
            // Write the raw data
            Console.WriteLine("Value={0}", a1.Value);
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文