java 异常 不抛_在java中抛出异常而不断开循环

我需要在java内部循环中处理自定义异常,所以我抛出新的自定义异常但它打破了循环。我们如何设法在不断开循环的情况下抛出循环。这里是我的代码在java中抛出异常而不断开循环

for (int i = 0; i < j; i++) {

File currFile = arrayOfFile1[i];

if (currFile.isFile()) {

if (currFile.exists()) {

try {

String fileName = currFile.getName();

if (fileName.startsWith("~$")) {

continue;

} else {

if ((fileName.endsWith(".xlsx")) || (fileName.endsWith(".xls"))) {

if (fileName.endsWith("_arch.xlsx") || fileName.endsWith("_arch.xls")) {

continue;

}

try {

IDSOutputGenerator.generateOutput(currFile.getAbsolutePath(), "", outputType,

false);

} catch (CheckErrorHandle e) {

throw new CheckErrorHandle();

}

}

else if (fileName.endsWith(".xml")) {

try {

IDSOutputGenerator.generateOutput(currFile.getAbsolutePath(), "", outputType,

false);

} catch (CheckErrorHandle e) {

throw new CheckErrorHandle();

}

} else {

throw new CheckErrorHandle(currFile.getAbsolutePath(), "File type not supported");

}

}

} catch (CheckErrorHandle e) {

throw new CheckErrorHandle();

} catch (Exception e) {

throw new CheckErrorHandle("", e.getMessage());

}

} else {

throw new CheckErrorHandle(currFile.getAbsolutePath(), "File does not exist");

}

}

}

+3

如果抛出异常,则跳出循环。它还应该做什么?你可以做什么,是创建一个异常列表,不要抛出任何东西,但将它们添加到列表中,并且在循环之后,抛出一个包含该列表的异常(如果它不是空的) - 但是为什么你想要做那? –

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值