我试图将视窗错误转换成与以下方的java IOException:
void ThrowIOException(JNIEnv * env, LPCTSTR lpszFunction, DWORD dw)
{
LPVOID lpMsgBuf;
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR) &lpMsgBuf,
0, NULL );
// MessageBox(NULL, (LPCTSTR)lpDisplayBuf, TEXT("Error"), MB_OK);
LPVOID lpDisplayBuf = (LPVOID)LocalAlloc(LMEM_ZEROINIT,
(lstrlen((LPCTSTR)lpMsgBuf)+lstrlen((LPCTSTR)lpszFunction)+40)*sizeof(TCHAR));
StringCchPrintf((LPTSTR)lpDisplayBuf,
LocalSize(lpDisplayBuf),
TEXT("%s failed with error %d: %s"),
lpszFunction, dw, lpMsgBuf);
jclass Exception = env->FindClass("java/io/IOException");
if(env->ThrowNew(Exception, (const char *)lpDisplayBuf)){
printf("Can t throw IOException: %s
", lpDisplayBuf);
}
LocalFree(lpMsgBuf);
LocalFree(lpDisplayBuf);
}
我在维也纳国际中心项目中使用Unicode。 IOException公司成功投了阴影,但电文中的信息并未适当展示。
我知道,把“const char*”带给“Buf”可能是错误的,但我不知道如何纠正。