- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
在使用 File.mkdir 时,我注意到 friend 们在失败时不会抛出异常!值得庆幸的是,FindBugs 指出了这一点,现在我的代码至少检查了返回值,但我仍然看不到有关为什么调用失败的有意义的信息!
如何找出对这些 File 方法的调用失败的原因?有没有好的替代方案或库来处理这个问题?
我在 SO 和 Google 上进行了一些搜索,发现关于这个主题的信息很少。
[更新] 我尝试了 VFS,但它的异常没有更多有用的信息。例如,尝试移动最近删除的目录导致 Could not rename file "D:\path\to\fileA"to "file:///D:/path/do/fileB".
没有提到 fileA 不再存在。
[更新] 业务需求限制我只能使用 JDK 1.6 解决方案,因此 JDK 1.7 已经过时了
最佳答案
您可以调用 native 方法,并以这种方式获得正确的错误代码。例如,c 函数 mkdir有类似 EEXIST 和 ENOSPC 的错误代码。您可以使用 JNA相当容易地访问这些 native 功能。如果您支持 *nix 和 Windows,则需要创建此代码的两个版本。
对于 linux 上的 jna mkdir 示例,您可以这样做,
import java.io.IOException;
import com.sun.jna.LastErrorException;
import com.sun.jna.Native;
public class FileUtils {
private static final int EACCES = 13;
private static final int EEXIST = 17;
private static final int EMLINK = 31;
private static final int EROFS = 30;
private static final int ENOSPC = 28;
private static final int ENAMETOOLONG = 63;
static void mkdir(String path) throws IOException {
try {
NativeLinkFileUtils.mkdir(path);
} catch (LastErrorException e) {
int errno = e.getErrorCode();
if (errno == EACCES)
throw new IOException(
"Write permission is denied for the parent directory in which the new directory is to be added.");
if (errno == EEXIST)
throw new IOException("A file named " + path + " already exists.");
if (errno == EMLINK)
throw new IOException(
"The parent directory has too many links (entries). Well-designed file systems never report this error, because they permit more links than your disk could possibly hold. However, you must still take account of the possibility of this error, as it could result from network access to a file system on another machine.");
if (errno == ENOSPC)
throw new IOException(
"The file system doesn't have enough room to create the new directory.");
if (errno == EROFS)
throw new IOException(
"The parent directory of the directory being created is on a read-only file system and cannot be modified.");
if (errno == EACCES)
throw new IOException(
"The process does not have search permission for a directory component of the file name.");
if (errno == ENAMETOOLONG)
throw new IOException(
"This error is used when either the total length of a file name is greater than PATH_MAX, or when an individual file name component has a length greater than NAME_MAX. See section 31.6 Limits on File System Capacity.");
else
throw new IOException("unknown error:" + errno);
}
}
}
class NativeLinkFileUtils {
static {
try {
Native.register("c");
} catch (Exception e) {
e.printStackTrace();
}
}
static native int mkdir(String dir) throws LastErrorException;
}
关于java - 如何为 Java 文件对象(mkdir、重命名、删除)调用失败获取有意义的消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6767382/
我正在尝试使用谷歌浏览器的 Trace Event Profiling Tool分析我正在运行的 Node.js 应用程序。选择点样本后,我可以在三种 View 之间进行选择: 自上而下(树) 自上而
对于一个可能是菜鸟的问题,我们深表歉意,但尽管在 SO 上研究了大量教程和其他问题,但仍找不到答案。 我想做的很简单:显示一个包含大量数据库存储字符串的 Android ListView。我所说的“很
我已经开始了一个新元素的工作,并决定给 Foundation 5 一个 bash,看看它是什么样的。在创建带有水平字段的表单时,我在文档中注意到的第一件事是它们使用大量 div 来设置样式。所以我在下
我有一个 Windows 窗体用户控件,其中包含一个使用 BeginInvoke 委托(delegate)调用从单独线程更新的第 3 方图像显示控件。 在繁重的 CPU 负载下,UI 会锁定。当我附加
我有一堆严重依赖dom元素的JS代码。我目前使用的测试解决方案依赖于 Selenium ,但 AFAIK 无法正确评估 js 错误(addScript 错误不会导致您的测试失败,而 getEval 会
我正在制作一款基于滚动 2D map /图 block 的游戏。每个图 block (存储为图 block [21][11] - 每个 map 总共 231 个图 block )最多可以包含 21 个
考虑到以下情况,我是前端初学者: 某个 HTML 页面应该包含一个沉重的图像(例如 - 动画 gif),但我不想强制客户缓慢地等待它完全下载才能享受一个漂亮的页面,而是我更愿意给他看一个轻量级图像(例
我正在设计一个小软件,其中包括: 在互联网上获取资源, 一些用户交互(资源的快速编辑), 一些处理。 我想使用许多资源(它们都列在列表中)来这样做。每个都独立于其他。由于编辑部分很累,我想让用户(可能
我想比较两个理论场景。为了问题的目的,我简化了案例。但基本上它是您典型的生产者消费者场景。 (我关注的是消费者)。 我有一个很大的Queue dataQueue我必须将其传输给多个客户端。 那么让我们
我有一个二元分类问题,标签 0 和 1(少数)存在巨大不平衡。由于测试集带有标签 1 的行太少,因此我将训练测试设置为至少 70-30 或 60-40,因此仍然有重要的观察结果。由于我没有过多地衡量准
我是一名优秀的程序员,十分优秀!