获取jna中字节数组的指针
我在 C# 中有以下代码,并且需要使用 JNA 在 java 中提供类似的功能:
IntPtr pImage = SerializeByteArrayToIntPtr(imageData);
public static IntPtr SerializeByteArrayToIntPtr(byte[] arr)
{
IntPtr ptr = IntPtr.Zero;
if (arr != null && arr.Length > 0)
{
ptr = Marshal.AllocHGlobal(arr.Length);
Marshal.Copy(arr, 0, ptr, arr.Length);
}
return ptr;
}
I have following code in c# and need similar functionality in java using JNA:
IntPtr pImage = SerializeByteArrayToIntPtr(imageData);
public static IntPtr SerializeByteArrayToIntPtr(byte[] arr)
{
IntPtr ptr = IntPtr.Zero;
if (arr != null && arr.Length > 0)
{
ptr = Marshal.AllocHGlobal(arr.Length);
Marshal.Copy(arr, 0, ptr, arr.Length);
}
return ptr;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用 内存
如此使用它:
请注意,只要使用该内存的本机代码需要它,您就需要保持对 Memory 对象的强引用(否则,Memory 对象将在垃圾时回收本机内存)集)。
如果您需要对本机内存的生命周期进行更多控制,请从 libc 映射 malloc() 和 free() 并使用它们。
You want to use Memory
Use it thusly:
Be aware, that you need to keep a strong reference to the Memory object for as long as the native code that will use the memory needs it (otherwise, the Memory object will reclaim the native memory when it is garbage collected).
If you need more control over the lifecycle of the native memory, then map in malloc() and free() from libc and use them instead.