java线程只能通过'Interrupt()'函数调用来中断吗?

时间:2016-12-21 06:01:31

标签: java jvm

我有一个用java编写的应用程序。

我使用 RandomAccessFile 类来处理从几GB到几十GB的非常大的文件。错误消息表明文件处理程序被中断关闭。

ERROR org.apache.hama.XXX:java.nio.channels.ClosedByInterruptException
at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:202)
at sun.nio.ch.FileChannelImpl.size(FileChannelImpl.java:315)    
...
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.apache.hadoop.ipc.RPC$Server.call(RPC.java:508)
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:959)

我没有在某个线程上显式调用'interrupt'的代码行。我应该从哪里开始查看中断的根本原因?

0 个答案:

没有答案