Licensing

如何在Aspose.Cells组件中申请License

该许可证是一个纯文本 XML 文件,其中包含产品名称、许可的开发人员数量、订阅到期日期等详细信息。该文件经过数字签名,因此请勿修改该文件。即使无意中在文件中添加了额外的换行符也会使其失效。如果您想避免其评估限制,则需要在使用 Aspose.Cells 之前设置许可证。每个应用程序(或进程)只需设置一次许可证。许可证可以从文件、流或嵌入式资源加载。

Aspose.Cells 尝试在以下位置查找许可证:

  • 显式路径
  • 包含Aspose.Cells.dll的文件夹
  • 包含名为 Aspose.Cells.dll 的程序集的文件夹
  • 包含入口程序集的文件夹(您的 .exe)
  • 程序集中名为 Aspose.Cells.dll 的嵌入资源

有两种常见的方法可以从文件或流中应用许可证,或者作为嵌入式资源应用许可证。

如何从磁盘或流应用许可证

设置许可证的最简单方法是将许可证文件放在与 Aspose.Cells.dll 相同的文件夹中,并仅指定文件名而不指定其路径。

 //Instantiate an instance of license and set the license file through its path

Aspose.Cells.License license = new Aspose.Cells.License();

license.SetLicense("Aspose.Cells.lic");

还可以从流加载许可证。

 //Instantiate an instance of license and set the license through a stream

Aspose.Cells.License license = new Aspose.Cells.License();

license.SetLicense(myStream);

如何申请计量许可证

Aspose.Cells 允许开发者应用计量密钥。这是一种新的许可机制。新的发牌机制将与现有的发牌方法同时使用。想要根据 API 功能的使用情况进行计费的客户可以使用计量许可。欲了解更多详情,请参阅计量 Licensing 常见问题解答部分。

新班级计量已引入应用计量密钥。以下是演示如何设置计量公钥和私钥的示例代码。

 //Set metered public and private keys

Metered metered = new Metered();

//Access the setMeteredKey property and pass public and private keys as parameters

metered.SetMeteredKey("*************", "*************");

//Instantiate a new Workbook

Workbook workbook = new Workbook();

//Check if the license is set

Console.WriteLine(workbook.IsLicensed);

//Get the Consumption quantity

decimal amountBefore = Metered.GetConsumptionQuantity();

Console.WriteLine(amountBefore);

Workbook workbook2 = new Workbook("e:\\test2\\Book1.xlsx");

workbook2.Save("e:\\test2\\out1.xlsx");

//Since uploading data is already running on another thread, so you might need to wait for some time (optional)

System.Threading.Thread.Sleep(10000);

//Get the Consumption quantity again which should be greater a bit

decimal amountAfter = Metered.GetConsumptionQuantity();

Console.WriteLine(amountAfter);

如何使用嵌入式资源

将许可证与应用程序打包并确保其不会丢失的另一种巧妙方法是将其作为嵌入式资源包含到调用 Aspose.Cells 的程序集中。要将许可证文件作为嵌入式资源包含,请执行以下步骤:

  1. 在 Visual Studio .NET 中,通过选择将许可证 (.lic) 文件包含到项目中添加现有项目来自文件菜单。
  2. 在解决方案资源管理器中选择文件并设置构建行动嵌入式资源在属性窗口中

要访问嵌入在程序集中的许可证(作为嵌入资源),不需要调用 Microsoft .NET Framework 的 System.Reflection.Assembly 类的 GetExecutingAssembly 和 GetManifestResourceStream 方法。所需要做的就是将许可证文件作为嵌入式资源添加到您的项目中,并将许可证文件的名称传递到 SetLicense 方法中。这Aspose.Cells.Licenseclass 会自动在嵌入资源中查找许可证文件。请查看下面给出的示例,以了解在应用程序中设置许可证(嵌入)的这种方法。

 //Instantiate the License class

Aspose.Cells.License license = new Aspose.Cells.License();

//Pass only the name of the license file embedded in the assembly

license.SetLicense("Aspose.Cells.lic");

如何在Aspose.Cells网格控件中设置许可证

在 Aspose.Cells Grid Suite 中,可以从文件、流或嵌入式资源加载许可证。 Aspose.Cells.GridDesktop / Aspose.Cells.GridWeb 尝试在以下位置查找许可证:

  1. 显式路径
  2. 包含组件 dll 的文件夹(包含在 Aspose.Cells.GridDesktop 或 Aspose.Cells.GridWeb 中)
  3. 包含调用组件 dll 的程序集的文件夹(包含在 Aspose.Cells.GridDesktop 或 Aspose.Cells.GridWeb 中)
  4. 包含入口程序集的文件夹(您的 .exe)
  5. 程序集中调用组件 dll 的嵌入资源(包含在 Aspose.Cells.GridDesktop 或 Aspose.Cells.GridWeb 中)

如何从磁盘或流应用许可证

设置许可证的最简单方法是将许可证文件放在与组件的 dll(包含在 Aspose.Cells.GridWeb 中)相同的文件夹中,并仅指定文件名而不指定其路径。

//Instantiate an instance of license and set the license file through its path

Aspose.Cells.GridWeb.License license = new Aspose.Cells.GridWeb.License();

license.SetLicense("MyLicense.lic");

还可以从流加载许可证。

//Instantiate an instance of license and set the license through a stream

Aspose.Cells.GridWeb.License license = new Aspose.Cells.GridWeb.License();

license.SetLicense(myStream);

如何将许可证申请为嵌入式资源

将许可证与应用程序打包并确保其不会丢失的另一种巧妙方法是将其作为嵌入式资源包含到调用组件 dll 的程序集中(包含在 Aspose.Cells.GridDesktop 中)。要将许可证文件包含为嵌入式资源,请执行以下步骤:

  1. 在 Visual Studio .NET 中,使用以下命令将许可证 (.lic) 文件包含到项目中添加现有项目上的选项文件菜单。
  2. 在“解决方案资源管理器”中选择该文件,然后在“属性”窗口中将“构建操作”设置为“嵌入资源”。
  3. 要访问嵌入在程序集中的许可证(作为嵌入资源),不需要调用 Microsoft .NET Framework 的 System.Reflection.Assembly 类的 GetExecutingAssembly 和 GetManifestResourceStream 方法。而是将许可证文件作为嵌入资源添加到您的应用程序中。项目并将许可证文件的名称传递到 SetLicense 方法中。 License 类自动在嵌入资源中查找许可证文件。

请查看下面给出的示例,以了解将许可证作为嵌入式资源应用到您的应用程序的这种方法。

 //Instantiate the License class

Aspose.Cells.GridDesktop.License license = new Aspose.Cells.GridDesktop.License();

//Pass only the name of the license file embedded in the assembly

license.SetLicense("Aspose.Total.lic");

如何在 Aspose.Cells.GridDesktop 中为 WinForm 应用程序申请许可证

建议您在应用程序启动之前放置许可代码,并且仅应用一次。例如,对于 Windows C# 应用程序,请将许可代码放入 Main 方法中。

public class Form1 : System.Windows.Forms.Form

{

private Aspose.Cells.GridDesktop.GridDesktop gridDesktop1;

/// <summary>

/// Required designer variable.

/// </summary>

private System.ComponentModel.Container components = null;

public Form1()

{

//

// Required for Windows Form Designer support

//

InitializeComponent();

//

// TODO: Add any constructor code after InitializeComponent call

//

}

/// The main entry point for the application.

/// </summary>

.

.

.

.

[STAThread]

static void Main()

{

Aspose.Cells.GridDesktop.License lic = new Aspose.Cells.GridDesktop.License();

//Use this line if you are using an explicit path for the license file.

lic.SetLicense(@"C:\MyLicense.lic");

//Or use the line below if you are using the license file as an embedded resource.

//lic.SetLicense("MyLicense.lic");

Application.Run(new Form1());

}

private void Form1_Load(object sender, System.EventArgs e)

{

Aspose.Cells.GridDesktop.Worksheet sheet = this.gridDesktop1.Worksheets.Add("MySheet");

sheet.Cells["A1"].SetCellValue("Hello");

gridDesktop1.ActiveSheetIndex = 1;

}

}

Aspose.Cells.GridWeb申请License注意事项

建议将许可代码放在 Web 应用程序的 Global.asax.cs 中(假设该许可文件放在“ d:\ ”驱动器上):

 protected void Application_Start(Object sender, EventArgs e)

{

    Aspose.Cells.GridWeb.License lic = new Aspose.Cells.GridWeb.License();

    lic.SetLicense(@"d:\Aspose.Cells.GridWeb.lic.xml");

}

从流加载许可证

 protected void Application_Start(Object sender, EventArgs e)

{

    Aspose.Cells.GridWeb.License lic = new Aspose.Cells.GridWeb.License();

    lic.SetLicense(myStream);

}