我正在尝试将一些jpg图像存储到我的播放磁盘中 framework + java应用程序。我正在使用激活器运行(在开发模式下)和激活器dist(在prod模式下)来运行应用程序。当我在dev模式下运行时,目录和文件保存在应用程序类路径中。在prod模式下,不保存文件,但创建目录并显示为不可写/可读。需要做些什么才能解决这个问题?
示例代码:
File dir = new File(dirs);
dir.mkdirs();
dir.setWritable(true);
dir.setReadable(true);
dir.setExecutable(true);
String name = "fl" + "_" + sample;
File dest_f = new File(dir, name);//this is not creating the file in prod mode.
由于