我使用在 OfficeWriter 中找到的示例编码创建了一个简单而基本的 Hello World 模板。但是,我想将输出保存在计算机内的文件夹中,而不是在线存储(网络)
该网站已经说明了如何保存到文件夹,但在我的情况下它不起作用。任何人都可以在这方面提供帮助吗?顺便说一句,我使用控制台应用程序进行编码。
该错误提到我必须添加 System.Web 引用,我认为这是没有必要的,因为我没有做网络或其他事情。
using SoftArtisans.OfficeWriter.ExcelWriter;
namespace ConsoleApplication1
class Program
{
static void Main(string[] args)
{
ExcelTemplate XLT = new ExcelTemplate();
XLT.Open(@"C:\Users\administrator\Desktop\Hello World.xlsx);
DataBindProperties dataProps = XLT.CreateDataBindingProperties();
string value = "Hello World";
XLT.BindCellData(value, "DataValue", dataProps);
XLT.Process();
XLT.Save("Output.xlsx"); //this coding is giving me problem.
}
}