从JAR文件加载库文件

use*_*041 1 java exception

我正在尝试使用System.load()Java 加载DLL .我得到这个例外:

Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Documents and Settings\dvargo\Local Settings\Temp\jmacm.dll: Can't load this .dll (machine code=0x0) on a IA 32-bit platform
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1803)
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1699)
        at java.lang.Runtime.load0(Runtime.java:770)
        at java.lang.System.load(System.java:1003)
        at GlobalUtilities.DllManager.dynamicallyLoadDLL(DllManager.java:160)
        at GlobalUtilities.DllManager.dynamicallyLoadDLLs(DllManager.java:182)
        at JMFManager.JMFRunner.dynamicallyLoadJMFDllsFromResource(JMFRunner.java:152)
        at JMFManager.JMFRunner.main(JMFRunner.java:164)

这是什么意思?

编辑:

我的jar文件中有一些dll.我将它们从jar文件中取出并使用以下代码将它们写入temp文件夹:


    private static ArrayList buf;
    public static InputStream soundStreams;

    public static File getResourceFile(String resourceName, File dest)
    {
        InputStream is = null;
        BufferedReader br = null;
        int line;
        ArrayList list = new ArrayList();

        try
        {
            is = new Object().getClass().getResourceAsStream(resourceName);
            br = new BufferedReader(new InputStreamReader(is));
            while (-1 != (line = br.read()))
            {
                list.add(line);
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        finally
        {
            try
            {
                if (br != null)
                {
                    br.close();
                }
                if (is != null)
                {
                    is.close();
                }

                File newFile = dest;
                newFile.createNewFile();
                FileOutputStream fos = new FileOutputStream(newFile);
                for (Integer i : list)
                {
                    fos.write(i.byteValue());
                }
                fos.close();
                return newFile;
            }
            catch (IOException e)
            {
                e.printStackTrace();
            }
        }
        return null;

    }

然后我尝试使用System.load()加载此dll; 它抛出了异常.

dcn*_*dcn 5

好像你正在尝试在32位OS/JVM上加载64位库