出于调试原因,我正在为 C++ DLL 编写一个 jna 包装器(使用 gcc 和 mingw32 编译)
write16Byte.dll
void write16Byte(const BYTE* mem) {
FILE* out = fopen("BSTRvalues.txt", "a+");
if (out == NULL) {
printf("Error opening file!\n");
return;
}
for (int i=0; i<16; i++) fprintf(out, "0x%x ", mem[i]);
fwprintf(out, L"\n");
fclose(out);
}
jna 包装器
public interface W16BDll extends com.sun.jna.Library {
W16BDll INSTANCE = (W16BDll)com.sun.jna.Native.loadLibrary("write16Byte.dll", W16BDll.class);
void write16Byte(com.sun.jna.Memory version);
}
fprintf 的调用导致“java.lang.Error: Invalid memory access”,因为当我删除 fprintf 时一切正常(我已经在 JNA Invalid memory access 中读取了写入 stdout 时的线程)