在线程中写文件的程序报 java.io.IOException: 句柄无效。不知道为什么,请帮忙看看。谢谢
程序报java.io.IOException:句柄无效。不知道为什么,请帮忙看看。java.io.IOException:句柄无效。atjava.io.FileOutpu...
程序报 java.io.IOException: 句柄无效。不知道为什么,请帮忙看看。
java.io.IOException: 句柄无效。
at java.io.FileOutputStream.writeBytes(Native Method)
at java.io.FileOutputStream.write(FileOutputStream.java:247)
at com.hippo.common.custsystem.Test$1.write(WindowsCmd.java:228)
at com.hippo.common.custsystem.Test$1.run(WindowsCmd.java:220)
at java.lang.Thread.run(Thread.java:595)
附上程序
class Test{
try {
FileOutputStream out = new FileOutputStream("F:\\temp2\\result.txt", true);
Test.writeSomething(out, "test ");
out.close();
} catch (FileNotFoundException ex) {
ex.printStackTrace();
} catch (IOException ex) {
/** @todo Handle this exception */
ex.printStackTrace();
}
}
public final static void writeSomething(final OutputStream output, final String line) throws
IOException {
Thread thread = new Thread(new Runnable(){
public void run() {
try {
this.write();
output.flush();
} catch (IOException ex) {
ex.printStackTrace();
}
}
public void write() throws IOException {
output.write(line.getBytes());
}
});
thread.start();
}//end of method
} 展开
java.io.IOException: 句柄无效。
at java.io.FileOutputStream.writeBytes(Native Method)
at java.io.FileOutputStream.write(FileOutputStream.java:247)
at com.hippo.common.custsystem.Test$1.write(WindowsCmd.java:228)
at com.hippo.common.custsystem.Test$1.run(WindowsCmd.java:220)
at java.lang.Thread.run(Thread.java:595)
附上程序
class Test{
try {
FileOutputStream out = new FileOutputStream("F:\\temp2\\result.txt", true);
Test.writeSomething(out, "test ");
out.close();
} catch (FileNotFoundException ex) {
ex.printStackTrace();
} catch (IOException ex) {
/** @todo Handle this exception */
ex.printStackTrace();
}
}
public final static void writeSomething(final OutputStream output, final String line) throws
IOException {
Thread thread = new Thread(new Runnable(){
public void run() {
try {
this.write();
output.flush();
} catch (IOException ex) {
ex.printStackTrace();
}
}
public void write() throws IOException {
output.write(line.getBytes());
}
});
thread.start();
}//end of method
} 展开
展开全部
同意楼上观点,主线程关闭了流,导致出错。
建议你在关闭前要wait所有的线程都已经关闭。
建议你在关闭前要wait所有的线程都已经关闭。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
多线程文件操作感觉很危险
不知道你的需求何在?
不知道你的需求何在?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询