gpt4 book ai didi

java - 如何在 Java 中重试打开属性文件

转载 作者:行者123 更新时间:2023-11-30 09:55:41 25 4
gpt4 key购买 nike

我试图通过将线程挂起 x 秒并重新读取文件来处理 Java 中的 FileNotFoundException。这背后的想法是在运行时编辑属性。

问题是程序简单地终止了。知道如何实现这个解决方案吗?

最佳答案

有一个古老的秘诀,最初由 Bjarne Stroustrup 为 C++ 编写,这里移植到 Java:

Result tryOpenFile(File f) {
while (true) {
try {
// try to open the file
return result; // or break
} catch (FileNotFoundException e) {
// try to recover, wait, whatever
}
}
}

关于java - 如何在 Java 中重试打开属性文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2712880/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com