私は、相対パスc#:特定のDLLのDLLImportが動作しませんが、サンプルアプリケーションでは動作していますが、どうすれば解決できますか? 。指定されたモジュールが見つかりませんでした(例外から:
private const string LzoDll32Bit = @"lib32\lzo_32.dll";
#region Dll-Imports
[DllImport(LzoDll32Bit, EntryPoint = "lzo_version_string")]
private static extern IntPtr lzo_version_string32();
[DllImport(LzoDll32Bit, EntryPoint = "lzo1x_1_compress", CallingConvention = CallingConvention.Cdecl)]
private static extern int lzo1x_1_compress32(byte[] src, int src_len, byte[] dst, ref int dst_len, byte[] wrkmem);
[DllImport(LzoDll32Bit, EntryPoint = "lzo1x_decompress", CallingConvention = CallingConvention.Cdecl)]
private static extern int lzo1x_decompress32(byte[] src, int src_len, byte[] dst, ref int dst_len, byte[] wrkmem);
[DllImport(LzoDll32Bit, EntryPoint = "__lzo_init_v2", CallingConvention = CallingConvention.Cdecl)]
private static extern int __lzo_init_v2_32(uint v, int s1, int s2, int s3, int s4, int s5, int s6, int s7, int s8, int s9);
#endregion
{ "DLL 'のlib32の\ lzo_32.dll' をロードすることができませんを使用してDLLをインポートしようとしていますHRESULT:0x8007007E) "}今ここ
は、 奇妙なことですは、サンプルプロジェクトをダウンロードしたサイトのリンクで、c#.netでlzo圧縮プログラムを使用する方法を確認します。 プロジェクトを実行すると、正常に動作します。私は自分のプロジェクトで持っているものとは別の依存関係は見ません。 私は両方とも.Net4.5.2を使用しています。ここで
は、そのクラスの私の完全なソースコードが
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace TradeAlgo
{
public class LZOCompressor
{
private static TraceSwitch _traceSwitch = new TraceSwitch("Simplicit.Net.Lzo", "Switch for tracing of the LZOCompressor-Class");
private const string LzoDll32Bit = @"lib32\lzo_32.dll";
#region Dll-Imports
[DllImport(LzoDll32Bit, EntryPoint = "lzo_version_string")]
private static extern IntPtr lzo_version_string32();
[DllImport(LzoDll32Bit, EntryPoint = "lzo1x_1_compress", CallingConvention = CallingConvention.Cdecl)]
private static extern int lzo1x_1_compress32(byte[] src, int src_len, byte[] dst, ref int dst_len, byte[] wrkmem);
[DllImport(LzoDll32Bit, EntryPoint = "lzo1x_decompress", CallingConvention = CallingConvention.Cdecl)]
private static extern int lzo1x_decompress32(byte[] src, int src_len, byte[] dst, ref int dst_len, byte[] wrkmem);
[DllImport(LzoDll32Bit, EntryPoint = "__lzo_init_v2", CallingConvention = CallingConvention.Cdecl)]
private static extern int __lzo_init_v2_32(uint v, int s1, int s2, int s3, int s4, int s5, int s6, int s7, int s8, int s9);
#endregion
private byte[] _workMemory = new byte[16384L * 4];
public LZOCompressor()
{
int init = 0;
init = __lzo_init_v2_32(1, -1, -1, -1, -1, -1, -1, -1, -1, -1);
if (init != 0)
{
throw new Exception("Initialization of LZO-Compressor failed !");
}
}
public byte[] Compress(byte[] src)
{
if (_traceSwitch.TraceVerbose)
{
Trace.WriteLine(String.Format("LZOCompressor: trying to compress {0}", src.Length));
}
byte[] dst = new byte[src.Length + src.Length/64 + 16 + 3 + 4];
int outlen = 0;
lzo1x_1_compress32(src, src.Length, dst, ref outlen, _workMemory);
if (_traceSwitch.TraceVerbose)
{
Trace.WriteLine(String.Format("LZOCompressor: compressed {0} to {1} bytes", src.Length, outlen));
}
byte[] ret = new byte[outlen + 4];
Array.Copy(dst, 0, ret, 0, outlen);
byte[] outlenarr = BitConverter.GetBytes(src.Length);
Array.Copy(outlenarr, 0, ret, outlen, 4);
return ret;
}
public byte[] Decompress(byte[] src)
{
if (_traceSwitch.TraceVerbose)
{
Trace.WriteLine(String.Format("LZOCompressor: trying to decompress {0}", src.Length));
}
int origlen = BitConverter.ToInt32(src, src.Length - 4);
byte[] dst = new byte[origlen];
int outlen = origlen;
lzo1x_decompress32(src, src.Length - 4, dst, ref outlen, _workMemory);
if (_traceSwitch.TraceVerbose)
{
Trace.WriteLine(String.Format("LZOCompressor: decompressed {0} to {1} bytes", src.Length, origlen));
}
return dst;
}
}
}
で、私はすべての詳細をしないのですなら、私に知らせて喜んで必要なものを提供するだろうしてください。ありがとう。
実行可能ファイルと同じディレクトリにdllを入れてください。 –