Unity3d使用dll时有些电脑会报DllNotFoundException错误 无法使用dll库

Unity3d使用dll时有些电脑会报DllNotFoundException错误 无法使用dll库

unity3d开发过程中使用了外部动态链接库dll,有些电脑运行工程时会报DllNotFoundException的错误,
这是由于该dll中引用系统内的dll不存在的原因。
在这里插入图片描述团队开发过程中所有人都可以 就是我自己的电脑不行,无论如何处理都不行,工程重新加载 ,平台切换等全部不行 。
最后定位到电脑系统问题。
找到自己使用dll库,

下载depends软件,打开使用的dll库
在这里插入图片描述
如下图 可以发现系统中缺少该dll,
在这里插入图片描述

去网上下载该库放入system32内
在这里插入图片描述
重新进工程就可以了

HSLCommunication是一个假设的DLL名,它通常用于工业自动化中的通信驱动,比如与基恩士PLC(Koyo/Kenosha PLCs)的集成。然而,实际的API细节取决于的具体实现,因为这类通常是私有的,且可能会有安全限制。 以下是一个简化的示例,展示了如何使用HSLCommunication DLL中的方法来连接基恩士PLC,这个例子假设有一个名为`ConnectToKoyoPLC`的方法,`ConfigurePort`用于设置端口配置,以及`SendCommand`发送指令: ```csharp using HSLCommunication; // 初始化函数 SafeHandle dllInstance = LoadLibrary("HSLCommunication.dll"); if (dllInstance.IsInvalid) { Console.WriteLine("无法加载HSLCommunication.dll"); return; } // 获取连接PLC的方法指针 IntPtr connectMethod = GetProcAddress(dllInstance, "ConnectToKoyoPLC"); if (connectMethod == IntPtr.Zero) { Console.WriteLine("找不到ConnectToKoyoPLC方法"); FreeLibrary(dllInstance); return; } // 获取配置端口的方法指针 IntPtr configurePortMethod = GetProcAddress(dllInstance, "ConfigurePort"); if (configurePortMethod == IntPtr.Zero) { Console.WriteLine("找不到ConfigurePort方法"); FreeLibrary(dllInstance); return; } // 获取发送命令的方法指针 IntPtr sendCommandMethod = GetProcAddress(dllInstance, "SendCommand"); if (sendCommandMethod == IntPtr.Zero) { Console.WriteLine("找不到SendCommand方法"); FreeLibrary(dllInstance); return; } try { // 连接到PLC bool connected = (bool)Marshal.GetDelegateForFunctionPointer(connectMethod, typeof(Func<bool>))(); if (!connected) { Console.WriteLine("无法连接到基恩士PLC"); return; } // 配置端口 ConfigurePortResult configResult = (ConfigurePortResult)Marshal.GetDelegateForFunctionPointer(configurePortMethod, typeof(Func<ConfigurePortResult, int>))(new ConfigurePortParameters()); if (configResult != ConfigurePortResult.Success) { Console.WriteLine($"配置端口失败: {configResult}"); } // 发送命令 byte[] command = ...; // 编码你要发送的PLC指令 bool success = (bool)Marshal.GetDelegateForFunctionPointer(sendCommandMethod, typeof(Func<byte[], bool>))(command); if (!success) { Console.WriteLine("发送命令失败"); } } catch (DllNotFoundException) { Console.WriteLine("HSLCommunication.dll未找到"); } catch (EntryPointNotFoundException) { Console.WriteLine("中方法未找到"); } finally { // 释放资源 FreeLibrary(dllInstance); } ``` 请注意,这只是一个基础示例,实际的代码可能需要处理更多的错误情况,并且具体的参数类型、结构和名称应根据实际的HSLCommunication文档来调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值