- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我被困在这里,有人可以解释为什么消费者线程在下面的代码中运行在生产者线程之前。当生产者没有放置任何内容时,消费者线程如何运行。是不是程序错了?
实现:-为从给定文件夹中拾取的每个文件运行生成消费者线程。
例如,如果指定的文件夹有 3 个,则每个文件必须启动 2 个线程(生产者/消费者),这使得线程计数为 6。
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.ArrayList;
import java.util.List;
import java.util.Vector;
class sharedInt {
private int syncUponInt;
private boolean available = false;
private File processingFile;
private static File[] listOfFile;
sharedInt(File[] totalList) {
listOfFile = totalList;
}
public int getTotalCount() {
return listOfFile.length;
}
public static File[] getListOfFile() {
return listOfFile;
}
public static void setListOfFile(File[] listOfFile) {
sharedInt.listOfFile = listOfFile;
}
public File getProcessingFile() {
return processingFile;
}
public void setProcessingFile(File processingFile) {
this.processingFile = processingFile;
}
public synchronized int getContents() {
while (available == false) {
try {
wait();
} catch (InterruptedException e) {
}
}
available = false;
notify();
return syncUponInt;
}
public synchronized void setContents(int value) {
while (available == true) {
try {
wait();
} catch (InterruptedException e) {
}
}
syncUponInt = value;
available = true;
notify();
}
}
class Producer1 extends Thread {
private sharedInt cubbyhole;
private int number;
public Producer1(sharedInt c, int number) {
cubbyhole = c;
this.number = number;
}
public void run() {
// for (int i = 0; i < cubbyhole.getTotalCount(); i++) {
cubbyhole.setContents(this.number);
Vector vectorList = new Vector();
System.out.println("Producer <current thread>" + this.currentThread() + "put: " + this.number
+ "processing file is" + cubbyhole.getProcessingFile());
RandomAccessFile raf = null;
try {
raf = new RandomAccessFile(cubbyhole.getProcessingFile(), "r");
StringBuffer sb = new StringBuffer();
String line = null;
while ((line = raf.readLine()) != null) {
sb.append(line);
}
vectorList.add(sb.toString());
System.out.println(sb.toString());
} catch (FileNotFoundException e) {
} catch (IOException e) {
}
// }
}
}
class Consumer1 extends Thread {
private sharedInt cubbyhole;
public Consumer1(sharedInt c) {
cubbyhole = c;
}
public void run() {
int value = 0;
// for (int i = 0; i < cubbyhole.getTotalCount(); i++) {
System.out.println("Consumer <current thread>" + this.currentThread() + "got: " + cubbyhole.getContents()
+ "processing file is" + cubbyhole.getProcessingFile());
}
}
public class FileManagementApp {
public static void main(String[] args) throws InterruptedException {
System.out.println("1. Please enter the path of the <Directory/Folder>...");
// Scanner scn = new Scanner(System.in);
// String folderPath = scn.nextLine();
File folder = new File("C:\\file\\output");
File[] fileList = folder.listFiles();
int countOfFiles = fileList.length;
sharedInt c = new sharedInt(fileList);
Producer1 p1 = null;
List<Producer1> pList = new ArrayList<Producer1>();
Consumer1 c1 = null;
List<Consumer1> cList = new ArrayList<Consumer1>();
for (int i = 0; i < countOfFiles; i++) {
c = new sharedInt(fileList);
c.setProcessingFile(fileList[i]);
p1 = new Producer1(c, i);
p1.setName("Producer--" + i);
pList.add(p1);
c1 = new Consumer1(c);
c1.setName("Consumer--" + i);
cList.add(c1);
pList.get(i).start();
cList.get(i).start();
}
}
}
输出:-
1. Please enter the path of the <Directory/Folder>...
Consumer <current thread>Thread[Consumer--0,5,main]got: 0processing file isC:\file\output\0.A.txt
Producer <current thread>Thread[Producer--0,5,main]put: 0processing file isC:\file\output\0.A.txt
Producer <current thread>Thread[Producer--1,5,main]put: 1processing file isC:\file\output\1.A.txt
Producer <current thread>Thread[Producer--2,5,main]put: 2processing file isC:\file\output\2.A.txt
Consumer <current thread>Thread[Consumer--1,5,main]got: 1processing file isC:\file\output\1.A.txt
fg
abc
Consumer <current thread>Thread[Consumer--2,5,main]got: 2processing file isC:\file\output\2.A.txt
de
编辑:-
将代码修改成这样,可以使用生产者消费者模型实现并发/多线程同时读写文件。
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Vector;
class SharedInteger {
private boolean available = false;
public File processingFile;
public long totalNoOfSplits;
public Vector<Byte> vectorBytes;
private File[] listOfFiles;
SharedInteger(File[] totalList) {
listOfFiles = totalList;
}
public synchronized Vector<Byte> get() {
while (available == false) {
try {
wait();
} catch (InterruptedException e) {
}
}
available = false;
notify();
return vectorBytes;
}
public synchronized void put(Vector<Byte> value) {
while (available == true) {
try {
wait();
} catch (InterruptedException e) {
}
}
vectorBytes = value;
available = true;
notify();
}
}
class Producer extends Thread {
private SharedInteger sharedInteger;
public Producer(SharedInteger c) {
sharedInteger = c;
}
public void run() {
FileInputStream fis = null;
Vector<Byte> vectorBytes = new Vector<Byte>();
try {
fis = new FileInputStream(sharedInteger.processingFile);
while (fis.available() != 0) {
vectorBytes.add((byte) fis.read());
}
sharedInteger.put(vectorBytes);
} catch (Exception e) {
}
}
}
class Consumer extends Thread {
private SharedInteger sharedInteger;
private FileOutputStream fos;
public Consumer(SharedInteger c) {
sharedInteger = c;
}
public void run() {
File newFile = sharedInteger.processingFile;
try {
fos = new FileOutputStream(newFile.getParentFile()+"1\\"+newFile.getName());
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Vector<Byte> v = sharedInteger.get();
try {
if (null != v) {
writeToAFile(v);
}
} catch (IOException e) { // TODO Auto-generated catch block
e.printStackTrace();
}
}
public void writeToAFile(Vector<Byte> contents) throws IOException {
for (int i = 0; i < contents.size(); i++) {
System.out.println(Thread.currentThread());
fos.write(contents.get(i));
fos.flush();
}
}
}
public class ProducerConsumerTest {
public static void main(String[] args) throws FileNotFoundException {
File folder = new File("C:\\file\\output");
File[] fileList = folder.listFiles();
int countOfFiles = fileList.length;
SharedInteger c = new SharedInteger(fileList);
List<Producer> pList = new ArrayList<Producer>();
List<Consumer> cList = new ArrayList<Consumer>();
Producer p1 = null;
Consumer c1 = null;
for (int i = 0; i < countOfFiles; i++) {
c = new SharedInteger(fileList);
c.processingFile = fileList[i];
p1 = new Producer(c);
p1.setName("Producer--" + i);
pList.add(p1);
pList.get(i).start();
c1 = new Consumer(c);
c1.setName("Consumer--" + i);
cList.add(c1);
cList.get(i).start();
}
}
}
最佳答案
好吧,有几件事很可疑。但是,请查看您的 run()
方法:
// Producer1
public void run() {
cubbyhole.setContents(this.number);
Vector vectorList = new Vector();
System.out.println("Producer <current thread>" + this.currentThread()
+ "put: " + this.number
+ "processing file is" + cubbyhole.getProcessingFile());
RandomAccessFile raf = null;
try {
// ...
}
// Consumer1
public void run() {
int value = 0;
System.out.println("Consumer <current thread>" + this.currentThread()
+ "got: " + cubbyhole.getContents()
+ "processing file is" + cubbyhole.getProcessingFile());
}
一旦您的生产者调用了 setContents(int)
(因此也调用了 notify()
),您的消费者就可以继续了。仅仅因为您首先看到消费者的控制台输出并不意味着什么。打印是在没有同步的情况下并发完成的,因此您不能依赖执行顺序。
编辑:根据您的要求使用Vector
、wait()
、notifiy()
和两个每个文件的线程,但请记住,有更好的方法来实现这个(见评论):
public class FileMerger {
private volatile int currentWriterId = 0;
public static void main(String[] args) throws Exception {
// 1st argument: target directory.
File directory = new File(args[0]);
// 2nd argument: merge files suffix.
FilenameFilter filter = (dir, name) -> name.endsWith("." + args[1]);
new FileMerger().merge(directory, filter);
}
public void merge(File directory, FilenameFilter filter) throws IOException, InterruptedException {
File[] files = directory.listFiles(filter);
int numberOfFiles = files.length;
Path mergeFilePath = Paths.get(directory.getPath() + FileSystems.getDefault().getSeparator() + "merge.txt");
Vector<String> fileContents = new Vector<>(Collections.nCopies(numberOfFiles, null));
Files.createFile(mergeFilePath);
for (int i = 0; i < numberOfFiles; i++) {
final int writerId = i;
File file = files[i];
CountDownLatch readWriteLatch = new CountDownLatch(1);
// Reader.
new Thread(() -> {
try {
List<String> lines = Files.readAllLines(Paths.get(file.getPath()));
String content = String.join("\n", lines);
fileContents.set(writerId, content);
readWriteLatch.countDown();
} catch (IOException e) { /* NOP */ }
}).start();
// Writer.
new Thread(() -> {
try {
// Wait for corresponding reader to set content.
readWriteLatch.await();
// Wait for writer ID.
synchronized (this) {
while (currentWriterId != writerId) {
wait();
}
Files.write(mergeFilePath, (fileContents.get(writerId) + "\n").getBytes(), StandardOpenOption.APPEND);
currentWriterId++;
notifyAll();
}
} catch (InterruptedException | IOException e) { /* NOP */ }
}).start();
}
}
}
关于java - 在 JAVA 中使用多线程(生产者消费者模型)读取和写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40029696/
kafka的java客户端-生产者 生产者消息发送流程 发送原理 在消息发送的过程中,涉及俩个线程,main线程和sender线程,在main线程中创建一个双端队列RecordAccumulator。
我使用互斥体和条件编写了一个生产者/消费者程序。它使用全局 int 来生成和使用值。有 1 个消费者线程和多个生产者线程。 规则: 当值太小时,消费者会等待。 当值太大时,生产者就会等待。 我的问题是
我有兴趣发现当有多个产品和多个消费者时是否可以在不使用赋值的情况下解决生产者 - 消费者问题,即使用函数式编程风格?如何? Producer-consumer problem 谢谢 最佳答案 是的,您
单个进程中的两个不同线程可以通过读取和/或写入共享一个公共(public)内存位置。 通常,这种(有意的)共享是通过使用 lock 的原子操作来实现的。 x86 上的前缀,对于 lock前缀本身(即非
我正在尝试编写一个简单的生产者-消费者应用程序,在该应用程序中,我需要从文件中读取大块数据(可能很大),并且(出于简单测试目的)只需通过另一个线程将其写入另一个文件中即可。 我尝试了很多在线资源,但是
我已经为kafka(wurstmeister / kafka-docker)构建了一个docker镜像。在docker容器内部,我能够使用内置的shell脚本创建主题,生成消息并使用消息。现在,我正在
我正在尝试模拟关于多线程的生产者-消费者模型。 我们假设要遵守三个规则: 当桶装满产品时,生产者不能将产品添加到桶中。 当桶为空时,消费者无法从桶中获取产品。 生产和消费不能同时进行。换句话说,这两个
我有一个生成器应用程序,可以生成索引(将其存储在某些内存树数据结构中)。消费者应用程序将使用索引来搜索部分匹配。 我不希望消费者 UI 在生产者索引数据时必须阻塞(例如通过某些进度条)。基本上,如果用
我正在尝试为我遇到的排队问题找到解决方案。在典型的场景中,生产者将一些东西放入队列中,而消费者将其取出。如果我们有一个也消费的生产者和一个最初从队列中取出某些内容然后将某些内容(例如结果)放回到队列中
虽然以下是众所周知的话题,但我想请您提供意见。我写了一个小程序如下:所有生产者和消费者都排队。我不明白为什么会这样。什么场景下可以完全阻塞。 让我们考虑一下生产者/消费者正在等待数组上的锁,以及是什么
下面是我用于实现生产者-消费者问题的代码。使用 notifyAll() 一切正常,但是由于性能原因,我想用 notify() 替换所有出现的 notifyAll() >. 我发现通过将 notifyA
我有一个生产者-消费者的基本实现,如下所示: 我的问题是如何使线程数:x ~ y 来提高应用程序性能和负载平衡?有人有关键字或提示吗?预先感谢您! 最佳答案 您应该能够通过 Little's La
我编写了一个类“Producer”,它连续解析特定文件夹中的文件。解析的结果将存储在Consumer的队列中。 public class Producer extends Thread { p
我遇到“生产者 - 消费者任务”中可能出现死锁的问题。一切都应该按以下方式进行: 生产者应该生成 int[] 数组并将其添加到集合中 消费者应该获取这些数组,将它们放入第二个集合并在输出中打印 在 D
我正在为我的操作系统类(class)做一个 CPU 调度模拟器项目。该程序应包含两个线程:生产者线程和消费者线程。生产者线程包括在系统中生成进程的生成器和选择多个进程并将它们放入一个名为 Buffer
我想知道是否可以通过 AMQP 和 RabbitMQ 为生产者和消费者使用不同的语言? 例如:Java 用于生产者,python/php 用于消费者,还是反之? 最佳答案 是的,AMQP 与语言无关,
编辑:我有一个生产者类,它将一些数据发送到 SharedBuffer 类。该数据被添加到 ArrayList 中,限制设置为 100。将数据添加到所述列表中没有问题,但消费者类无法从列表中获取任何数据
我正在尝试在有界缓冲区中使用生产者/消费者线程。缓冲区长度为 5。我有 1 个互斥体和 2 个信号量,空信号量从缓冲区大小开始,满信号量从 0 开始。 当我在最后没有 sleep() 的情况下运行代码
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我用Java的LinkedBlockingDeque实现了生产者-消费者模式,但我遇到了一个问题,我有时想将一个项目(已经在队列中的某个位置)移动到队列的前面,以便更快地处理它。我永远不知道哪些已经排
我是一名优秀的程序员,十分优秀!