Aspose.words,Aspose.cells,vb.net,c#加载许可证,生成操作选择:嵌入的资源

当你已经将许可证文件的生成操作设置为 "嵌入的资源" 后,可在代码里从嵌入资源加载该许可证。以下分别给出 C# 和 VB.NET 的示例代码。

C# 示例

在 C# 的 WinForm 项目中,可在 Form1.cs 文件里添加如下代码来加载嵌入资源中的许可证:

aspose-license-loading-csharpC# 加载嵌入资源中的 Aspose 许可证

cs 复制代码
using System;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
using Aspose.Cells;

namespace YourWinFormApp
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            // 加载许可证
            LoadAsposeLicense();
        }

        private void LoadAsposeLicense()
        {
            try
            {
                // 获取当前执行的程序集
                Assembly assembly = Assembly.GetExecutingAssembly();
                // 替换为实际的命名空间和许可证文件名
                string resourceName = "YourNamespace.Aspose.Total.NET.lic";
                // 从程序集获取嵌入资源的流
                using (Stream stream = assembly.GetManifestResourceStream(resourceName))
                {
                    if (stream == null)
                    {
                        MessageBox.Show("未找到嵌入的许可证资源,请检查资源名称。", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        return;
                    }
                    // 创建许可证对象
                    License license = new License();
                    // 设置许可证
                    license.SetLicense(stream);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show($"加载 Aspose 许可证时出错: {ex.Message}", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
    }
}    

VB.NET 示例

VB.NET 的 WinForm 项目中,可在 Form1.vb 文件里添加如下代码来加载嵌入资源中的许可证:

aspose-license-loading-vbnetVB.NET 加载嵌入资源中的 Aspose 许可证

vbnet 复制代码
Imports System.IO
Imports System.Reflection
Imports System.Windows.Forms
Imports Aspose.Cells

Public Class Form1
    Public Sub New()
        InitializeComponent()
        ' 加载许可证
        LoadAsposeLicense()
    End Sub

    Private Sub LoadAsposeLicense()
        Try
            ' 获取当前执行的程序集
            Dim assembly As Assembly = Assembly.GetExecutingAssembly()
            ' 替换为实际的命名空间和许可证文件名
            Dim resourceName As String = "YourNamespace.Aspose.Total.NET.lic"
            ' 从程序集获取嵌入资源的流
            Using stream As Stream = assembly.GetManifestResourceStream(resourceName)
                If stream Is Nothing Then
                    MessageBox.Show("未找到嵌入的许可证资源,请检查资源名称。", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error)
                    Return
                End If
                ' 创建许可证对象
                Dim license As New License()
                ' 设置许可证
                license.SetLicense(stream)
            End Using
        Catch ex As Exception
            MessageBox.Show($"加载 Aspose 许可证时出错: {ex.Message}", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error)
        End Try
    End Sub
End Class    

代码解释

  1. 获取程序集 :借助 Assembly.GetExecutingAssembly() 方法获取当前执行的程序集。
  2. 获取资源流 :使用 assembly.GetManifestResourceStream(resourceName) 方法从程序集中获取嵌入资源的流。
  3. 检查流是否为空 :要确保成功获取到资源流,若流为 null,则显示错误消息。
  4. 加载许可证 :创建 License 对象,调用 SetLicense 方法并传入资源流来加载许可证。
  5. 异常处理:添加了异常处理代码,若加载许可证时出现错误,会弹出消息框提示用户。

请把 YourNamespace 替换成你项目实际的命名空间。

相关推荐
闪电麦坤957 小时前
C#:base 关键字
开发语言·c#
ZhangChuChu_92488 小时前
Word在生成PDF后,PDF左侧导航书签目录错误显示的解决方法
pdf·word
mingupup8 小时前
C#连接小智服务器并将音频解码播放过程记录
c#
爱吃奶酪的松鼠丶11 小时前
.net GRPC服务搭建,跨进程调用。C#应用和Python应用之间的通信。
python·c#·.net
S3下载站12 小时前
Microsoft .NET Framework 4.8 离线安装包 下载
microsoft·.net
AI.NET 极客圈15 小时前
AI与.NET技术实操系列(四):使用 Semantic Kernel 和 DeepSeek 构建AI应用
人工智能·.net
inxunoffice15 小时前
批量将文本文件转换为 Word/PDF/Excel/图片等其它格式
pdf·word·excel
源之缘-OFD先行者16 小时前
GMap.NET + WPF:构建高性能 ADS-B 航空器追踪平台
.net·wpf·ads-b
勘察加熊人16 小时前
forms实现俄罗斯方块
c#