这个问题似乎很常见,但是当多线程写入同一个文件(Excel)时我遇到了问题。这是我的代码:
public class XLWriter {
private XLWriter() {
}
private static class SingletonHelper {
private static final XLWriter INSTANCE = new XLWriter();
}
public static synchronized XLWriter getInstance() {
return SingletonHelper.INSTANCE;
}
public static synchronized void writeOutput(Map<String, String> d) {
try {
--- Write file
} catch (Exception e) {
SOP("Not able to write output to the output file.");
}
}
public static void createWorkBook(String fileName, String sheetName)
throws IOException {
try {
-- Create workbook
} catch (WriteException e) {
System.out.println("Could not create workbook" + e);
}
}
我正在使用 testng 框架,并且 10 个线程尝试写入同一个文件。许多线程无法写入它并进入异常块......有什么更好的方法来做到这一点?任何代码示例都会对我有很大帮助,因为我完成这个的时间非常少。谢谢。