Java - 捕获System.load()错误

时间:2011-04-23 12:01:29

标签: java load java-native-interface

我的主要():

System.out.println("Start loading libraries");
boolean b2 = false;
try{
  b2 = FileManager.loadBinaries();
} catch (Exception e){
  System.out.println("Exception on loading");
}
System.out.println("Libraries loading ended");

LoadBinaries():

public static boolean loadBinaries(){
    String os = System.getProperty("os.name").toLowerCase();
    ArrayList<String> bins = new ArrayList<String>();

    if(os.indexOf("windows 7") >= 0 || os.indexOf("windows vista") >= 0){
        bins.add("/nm/metadata/bin/win/libcurld.dll");
        bins.add("/nm/metadata/bin/win/libfftw3f-3.dll");
        bins.add("/nm/metadata/bin/win/libmad.dll");
        bins.add("/nm/metadata/bin/win/libsamplerate.dll");
        bins.add("/nm/metadata/bin/win/seven/mylib.dll");
    }
    else if(os.indexOf("windows xp") >= 0){
        bins.add("/nm/metadata/bin/win/libcurld.dll");
        bins.add("/nm/metadata/bin/win/libfftw3f-3.dll");
        bins.add("/nm/metadata/bin/win/libmad.dll");
        bins.add("/nm/metadata/bin/win/libsamplerate.dll");
        bins.add("/nm/metadata/bin/win/xp/mylib.dll");
    } else if(os.indexOf("mac") >= 0){
        return false;
    }

    File f = null;
    for(String bin : bins){
        InputStream in = FileManager.class.getResourceAsStream(bin);
        byte[] buffer = new byte[1024];
        int read = -1;
        try {
            String[] temp = bin.split("/");
            f = new File(LIB_FOLDER + "/" + temp[temp.length-1]);
            File realF = new File(f.getAbsolutePath());

            if(!realF.exists()){
                FileOutputStream fos = new FileOutputStream(realF);

                while((read = in.read(buffer)) != -1) {
                    fos.write(buffer, 0, read);
                }
                fos.close();
                in.close();
            }
            System.out.println("Hello Load");
            System.load(f.getAbsolutePath());
            System.out.println("Bye Load");
        } catch (Exception e) { System.out.println("Bye Exception"); FileManager.log(e.getMessage(), true); librariesLoaded = false; return false; }
    }

    System.out.println("Bye Method");
    librariesLoaded = true;
    return true;
}

当我运行这个主要时,我得到下一个输出:

Start loading libraries
Hello Load
Bye Load
Hello Load
Bye Load
Hello Load
Bye Load
Hello Load
Bye Load
Hello Load
Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\java\workspace\Lib\mylib.dll: The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log for more detail
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.load0(Unknown Source)
    at java.lang.System.load(Unknown Source)
    at nm.player.FileManager.loadBinaries(FileManager.java:264)
    at nm.player.Player.<init>(Player.java:88)
    at nm.player.Player.main(Player.java:523)

这个错误是因为它缺少一些c ++系统dll。但我的问题不是这个。我担心这个错误之后程序的位置!我没有看到catch上的打印,方法循环后的打印以及loadbinaries执行后主打印件都没有。

如何捕获此类错误并处理它们?示例:发生此错误时,我想打印“请安装c ++库”并控制其后的流程。

3 个答案:

答案 0 :(得分:19)

尝试替换

catch (Exception e)

位于loadBinaries()方法底部的

catch (UnsatisfiedLinkError e)

UnsatisfiedLinkErrorError的子类,不是 Exception的子类:ErrorException都是Throwable的子类,Java异常层次结构的根。

通常情况下,你没有抓住Error。但是,您似乎有合理的理由这样做,因为您可以向用户显示一条消息,说“库X缺失,请安装它”。

答案 1 :(得分:4)

您的UnsatisfiedLinkError Exception的子类,因此未被catch子句捕获。如果您希望将其捕获,请将捕获更改为catch(Error e)

你看,Java的异常层次结构有点不直观。您有两个类ExceptionError,每个类都扩展Throwable。因此,如果你想要捕获绝对捕获Throwable所需的一切(不推荐)。

顺便说一下,

RuntimExceptionException的子类。

答案 2 :(得分:1)

这是一个错误。以及不按Java PMD捕获错误的良好做法。

您可以点击这些链接获取更多信息

When to catch java.lang.Error?

http://pmd.sourceforge.net/rules/strictexception.html