我正在尝试做的是在程序的 JAR 中存储一个文本文件(不会更改),以便可以读取它。文本文件的目的是它将被我的一个类读入,并且文本文件的内容将被添加到JEditorPane
. 该文件基本上是一个教程,当用户单击阅读教程的选项时,文件内容将被读取并显示在弹出的新窗口中。
我已经把它的 GUI 部分放下了,但就将文件存储在 JAR 中以便可以访问它而言,我迷失了方向。我已经读过使用InputStream
遗嘱,但是在尝试了一些事情之后我还没有让它工作。
我还将图像存储在 JAR 中以用作 GUI 窗口的图标。这是通过以下方式完成的:
private Image icon = new ImageIcon(getClass()
.getResource("resources/cricket.jpg")).getImage();
但是,这在尝试获取文件时不起作用:
private File file = new File(getClass.getResource("resources/howto.txt"));
这是我现在的班级:
public class HowToScreen extends JFrame{
/**
*
*/
private static final long serialVersionUID = -3760362453964229085L;
private JEditorPane howtoScreen = new JEditorPane("text/html", "");
private Image icon = new ImageIcon(getClass().getResource("resources/cricket.jpg")).getImage();
private BufferedReader txtReader = new BufferedReader(new InputStreamReader(getClass().getResourceAsStream("/resources/howto.txt")));
public HowToScreen(){
setSize(400,300);
setLocation(500,200);
setTitle("Daily Text Tutorial");
setIconImage(icon);
howtoScreen.setEditable(false);
howtoScreen.setText(importFileStream());
add(howtoScreen);
setVisible(true);
}
public String importFile(){
String text = "";
File file = new File("howto.txt");
Scanner in = null;
try {
in = new Scanner(file);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
while(in.hasNext()){
text += in.nextLine();
}
in.close();
return text;
}
public String importFileStream(){
String text = "";
Scanner in = new Scanner(txtReader);
while(in.hasNext()){
text += in.nextLine();
}
in.close();
return text;
}
}
忽略importFile
正在删除的方法,以便将教程文件存储在 JAR 中,使程序完全独立,因为我受限于程序可以使用的空间。
编辑:在尝试了以下所有建议后,我检查了我的 JAR 是否将文本文件打包在其中,而事实并非如此。使用 7zip 打开 JAR 时,在我的资源文件夹中,我用于图标的图片在那里,但不是文本文件。