English 中文(简体)
• 如何将格式Message输出转换成JN在窗户下发布的 Java例外信息?
原标题:How to convert FormatMessage output to an Java Exception message in JNI under windows?

我试图将视窗错误转换成与以下方的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”可能是错误的,但我不知道如何纠正。

问题回答

如果您的VC项目是作为UNICODE而建立的,那么你就必须把从格式Message返回ANSI,如以下例子(请指出,我把no>误差核对完全改为)。


// This is the main DLL file.

#include "stdafx.h"
#include "jni.h"
#include 

extern "C" 
{
JNIEXPORT jstring JNICALL Java_jnihellowworld_sayIt(JNIEnv *env, jobject obj)
    {
        jclass excClass;
        LPVOID lpMsgBuf;
        char buffer[1000];

        FormatMessage(
            FORMAT_MESSAGE_ALLOCATE_BUFFER | 
            FORMAT_MESSAGE_FROM_SYSTEM |
            FORMAT_MESSAGE_IGNORE_INSERTS,
            NULL,
            2,
            MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
            (LPTSTR) &lpMsgBuf,
            0, NULL );

        excClass = env->FindClass("java/io/IOException");

        ::WideCharToMultiByte(CP_ACP, 
                        0, 
                        (LPCWSTR) lpMsgBuf, 
                        -1, 
                        buffer, 
                        1000, 
                        NULL, 
                        NULL);

        LocalFree(lpMsgBuf);
        env->ThrowNew(excClass, buffer);

        return env->NewStringUTF("never reached");
    }
}

希望这一帮助。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签