我的jar文件不起作用(Jframe)

时间:2017-12-15 20:45:13

标签: java swing embedded-resource

我试图将.bin文件包含在我的.jar文件中

这是一个从文件中读取的函数

public Object read(String filepath) throws URISyntaxException{
    Object result=null;
    try{
    ObjectInputStream Reader=new ObjectInputStream(new FileInputStream(new File(this.getClass().getResource("/gui/Files/"+filepath).toURI())));
    result = Reader.readObject();
    }
    catch(IOException e){
    System.out.println(e);
    }
     catch (ClassNotFoundException ex) {
        Logger.getLogger(Fmanager.class.getName()).log(Level.SEVERE, null, ex);
    }
    return result;
}

它可以工作并从这条路径中读取文件" \ build \ classes \ gui \ Files" 文件会导致问题吗? 你能告诉我这是什么问题!!

0 个答案:

没有答案