我在java中编写了一个小程序,使用两个线程发送和接收数据文件。我希望两个线程在同一个类中。一个线程发送文件,另一个线程接收文件。我已经为它编写了代码,但错误很少。你能帮我弄清楚代码中的错误吗?我是一名学生,也是java的初学者,如果有任何愚蠢的错误,请饶恕我。
import java.lang.Thread.*;
import java.io.*;
public class sendques implements Runnable
{
int i=0,c;
static Thread[] t= new Thread[2];
FileInputStream fis=new FileInputStream("ip.jpg");
FileOutputStream fos=new FileOutputStream("output.jpg");
sendques() {
for(i=0;i<2;i++){
t[i]=new Thread(this);
t[i].start();
System.out.println("Threads "+i);
}
}
void run() {
while(true) {
wait();
send();
}
}
void send() {
while((c=fis.read())!=-1) {
t[2].receive(c);
wait();
}
}
void receive(int d) {
while(c!=-1) {
fos.write(d);
t[1].notify();
}
}
public static void main(String arg[]) {
sendques sq=new sendques();
t[1].send();
System.out.println("Quiting..");
}
}
答案 0 :(得分:1)
请勿使用notify
,更好地使用notifyAll
,因为可能会发生活动失败,名为:错过信号。这将很难纠正您的代码,以下是具有不同类的生产者/消费者实现的代码:
Buffer类用于存储生产者和消费者之间共享的数据。他们有自己的课程,你可以在BoundedBuffer.java
找到一个例子。它们不涉及繁重的计算任务,只是在两者之间传递消息。
这是一个干净的实现,尝试通过它。