9

我正在尝试做的是在程序的 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 时,在我的资源文件夹中,我用于图标的图片在那里,但不是文本文件。

4

4 回答 4

12

您不能在 JAR 文件中使用 File。您需要使用 InputStream 来读取文本数据。

BufferedReader txtReader = new BufferedReader(new InputStreamReader(getClass().getResourceAsStream("/resources/mytextfile.txt")));

// ... Use the buffered reader to read the text file.
于 2013-06-06T04:57:27.527 回答
2

尝试下一个(使用完整路径包):

InputStream inputStream = ClassLoader.getSystemClassLoader().
        getSystemResourceAsStream("com/company/resources/howto.txt");
InputStreamReader streamReader = new InputStreamReader(inputStream, "UTF-8");
BufferedReader in = new BufferedReader(streamReader);

for (String line; (line = in.readLine()) != null;) {
    // do something with the line
}
于 2013-06-06T05:12:08.617 回答
1

您的代码将无法编译。Class.getResource()返回 a URL,并且File没有以 aURL作为参数的构造函数。

您可以直接使用.getResourceAsStream()它,它直接返回一个InputStream,您只需从该流中读取文件的内容。

注意:如果找不到资源,这两种方法都会返回null:不要忘记检查...

于 2013-06-06T04:58:39.013 回答
1

文本文件的内容将添加到JEditorPane.

参见DocumentVewer& 特别是JEditorPane.setPage(URL)

由于帮助是,因此有必要获得信息中详述的URL使用getResource(String)

..试过这个:URL url = this.getClass().getResource("resources/howto.txt");

改变:

URL url = this.getClass().getResource("resources/howto.txt");

至:

URL url = this.getClass().getResource("/resources/howto.txt");  // note leading '/'
于 2013-06-06T05:31:14.650 回答