我正在尝试创建一个其他线程将继承的基本文件插件。但我被困在文件存在的位置,可以从普通线程读取,但当我尝试从抽象的基本文件中读取该文件时,它说文件未找到。这是我的基类: -
package com.evol.fp;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
public abstract class BaseFilePlugin extends Thread implements BaseFileReader{
String filename = "";
File file = null;
boolean fileStarted = false;
boolean fileEnded = false;
public BaseFilePlugin() {
file = new File(filename);
}
public void readFile() {
BufferedReader br = null;
System.out.println("Base call: " + filename);
try {
System.out.println("inbside ");
br = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
if(br.readLine().trim().isEmpty()) {
endFile();
return;
} else {
startFile(filename);
String record;
while((record = br.readLine().trim()) != null) {
parseRecord(record);
}
endFile();
}
} catch(Exception ioe) {
ioe.printStackTrace();
} finally {
try {
br.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public abstract void parseRecord(String record);
public void startFile(String filename) {
this.fileStarted = true;
this.fileEnded = false;
}
public void endFile() {
file.delete();
this.fileEnded = true;
this.fileStarted = false;
}
public void run() {
while(true) {
System.out.println("Inside run, fileName: " + filename);
System.out.println("Filestarted: " + fileStarted + ", file exists: " + file.exists());
if(!fileStarted) {
readFile();
}
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
/**
* @return the filename
*/
public String getFilename() {
return filename;
}
/**
* @param filename the filename to set
*/
public void setFilename(String filename) {
this.filename = filename;
}
}
我知道多线程,但从未用基类实现解析文件中的记录,如果有人告诉我什么是最好的问题。我知道该文件肯定存在。这是我的孩子班: -
package com.evol.fp;
public class FileReaderThread extends BaseFilePlugin {
public FileReaderThread() {
super.setFilename("E:\\soham\\soham.txt");
}
@Override
public void parseRecord(String record) {
System.out.println(record);
}
}
但它没有使用简单的主方法调用孩子的parseRecord
方法: -
package com.evol.fp;
public class StartProcess {
public static void main(String[] args) {
FileReaderThread thd = new FileReaderThread();
thd.start();
}
}
答案 0 :(得分:1)
我认为这是因为在super.setFile("E:\\soham\\soham.txt");
如果你可以删除父构造函数并将你的setFileName替换为setFile,其中file是iniatilize .e.g
// public BaseFilePlugin() {
// file = new File(filename);
// }
....
....
/**
* @return the file
*/
public String getFile() {
return file
}
/**
* @param file the file to set
*/
public void setFile(String file) {
file = new File(file);
}
并在您的子类中
public FileReaderThread() {
super.setFile("E:\\soham\\soham.txt");
}
答案 1 :(得分:1)
BaseFilePlugin
的构造函数从最初file
开始创建一个空字符串String filename = "";
。
客户端调用更新setFilename(...)
的{{1}}。但是,filename
在首次创建对象时仍然是相同的实例(使用空字符串作为文件名)。
我建议将文件名作为构造函数的一部分传递,以便正确初始化file
:
file
可选地,如果实例只能读取1个文件,那么将这些类属性设为final,并删除 public BaseFilePlugin(String filename) {
this.filename = filename;
file = new File(filename);
}
方法。