简体   繁体   English

Java - 在eclipse中导出到可执行jar文件后的文件读取

[英]Java - File Reading after exporting to executable jar file in eclipse

In eclipse when I export to my code to an executable jar file, the jar can't find any files. 在eclipse中,当我将代码导出到可执行jar文件时,jar无法找到任何文件。 The code I'm using is 我正在使用的代码是
FileReader fr = new FileReader("src/pkg/Password.txt"); BufferedReader br = new BufferedReader(fr); That is generating a FileNotFoundException 那就是生成FileNotFoundException
Note: this code works fine in eclipse. 注意:此代码在eclipse中工作正常。 Is there a way to do this properly without using .getResource() or .getResourseAsStream() because there is no constructor for FileReader with a URL or an InputStream 有没有办法在不使用.getResource().getResourseAsStream()情况下正确执行此操作,因为没有带有URL或InputStream的FileReader的构造函数

Here is my code for one class: 这是我的一个类的代码:

package pkg;

import java.awt.Color;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;

import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;

public class MainP extends JPanel {

/**
 * 
 */
private JButton btnAddCoupon, btnChangeStarCount;
private static final long serialVersionUID = 2669362135801409216L;
private JPasswordField passwordField;
static String s;

/**
 * Create the panel.
 */
public MainP() {
    GridBagLayout gridBagLayout = new GridBagLayout();
    gridBagLayout.columnWidths = new int[] { 245, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
    gridBagLayout.rowHeights = new int[] { 49, 0, 0, 0, 0, 0 };
    gridBagLayout.columnWeights = new double[] { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
            0.0, 0.0, 0.0, 0.0, Double.MIN_VALUE };
    gridBagLayout.rowWeights = new double[] { 0.0, 0.0, 0.0, 0.0, 0.0,
            Double.MIN_VALUE };
    setLayout(gridBagLayout);

            JButton btnCashIn = new JButton("Cash In");
            btnCashIn.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    MainClass.f2.setVisible(true);
                    MainClass.f.setVisible(false);

                }
            });
            GridBagConstraints gbc_btnCashIn = new GridBagConstraints();
            gbc_btnCashIn.fill = GridBagConstraints.BOTH;
            gbc_btnCashIn.insets = new Insets(0, 0, 5, 5);
            gbc_btnCashIn.gridx = 0;
            gbc_btnCashIn.gridy = 0;
            add(btnCashIn, gbc_btnCashIn);

    JLabel lblAdminrequiresPassword = new JLabel(
            "Admin (Requires Password)");
    GridBagConstraints gbc_lblAdminrequiresPassword = new GridBagConstraints();
    gbc_lblAdminrequiresPassword.insets = new Insets(0, 0, 5, 0);
    gbc_lblAdminrequiresPassword.gridx = 9;
    gbc_lblAdminrequiresPassword.gridy = 0;
    add(lblAdminrequiresPassword, gbc_lblAdminrequiresPassword);

    btnAddCoupon = new JButton("Add Coupon");
    btnAddCoupon.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            MainClass.f3.setVisible(true);
            MainClass.f.setVisible(false);
        }
    });
    GridBagConstraints gbc_btnAddCoupon = new GridBagConstraints();
    gbc_btnAddCoupon.insets = new Insets(0, 0, 5, 0);
    gbc_btnAddCoupon.gridx = 9;
    gbc_btnAddCoupon.gridy = 1;
    add(btnAddCoupon, gbc_btnAddCoupon);

    btnChangeStarCount = new JButton("Change Star Count");
    btnChangeStarCount.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            MainClass.f4.setVisible(true);
            MainClass.f.setVisible(false);
        }
    });
    GridBagConstraints gbc_btnChangeStarCount = new GridBagConstraints();
    gbc_btnChangeStarCount.insets = new Insets(0, 0, 5, 0);
    gbc_btnChangeStarCount.gridx = 9;
    gbc_btnChangeStarCount.gridy = 2;
    add(btnChangeStarCount, gbc_btnChangeStarCount);
    enab(false);
    passwordField = new JPasswordField();
    passwordField.setForeground(Color.red);
    passwordField.getDocument().addDocumentListener(new DocumentListener() {

        @Override
        public void removeUpdate(DocumentEvent e) {
            try {
                BufferedReader br = new BufferedReader(new FileReader("/pkg/Password.txt"));
                s = br.readLine();
                if (passwordField.getText().equals(s)) {
                    passwordField.setForeground(Color.green);
                    enab(true);
                } else {
                    passwordField.setForeground(Color.red);
                    enab(false);
                }
                br.close();
            } catch (IOException e1) {
                e1.printStackTrace();
            }
        }

        @Override
        public void insertUpdate(DocumentEvent e) {
            try {
                BufferedReader br = new BufferedReader(new FileReader("/pkg/Password.txt"));
                s = br.readLine();
                if (passwordField.getText().equals(s)) {
                    passwordField.setForeground(Color.green);
                    enab(true);
                } else {
                    passwordField.setForeground(Color.red);
                    enab(false);
                }
                br.close();
            } catch (IOException e1) {
                e1.printStackTrace();
            }
        }

        @Override
        public void changedUpdate(DocumentEvent e) {
            // XXX Do not change XXX
        }
    });
    GridBagConstraints gbc_passwordField = new GridBagConstraints();
    gbc_passwordField.insets = new Insets(0, 0, 5, 0);
    gbc_passwordField.fill = GridBagConstraints.HORIZONTAL;
    gbc_passwordField.gridx = 9;
    gbc_passwordField.gridy = 3;
    add(passwordField, gbc_passwordField);

    JLabel lblPasswordField = new JLabel("Password Field");

    GridBagConstraints gbc_lblPasswordField = new GridBagConstraints();
    gbc_lblPasswordField.gridx = 9;
    gbc_lblPasswordField.gridy = 4;
    add(lblPasswordField, gbc_lblPasswordField);

}

private void enab(boolean b) {
    btnAddCoupon.setEnabled(b);
    btnChangeStarCount.setEnabled(b);
}

}

Note: I tried using both FileReader and InputStreamReader 注意:我尝试使用FileReaderInputStreamReader

Directory Tree: 目录树:

MyJar.jar (C://Users/Orion31/Desktop/MyJar.jar | ---- pkg | --- Password.txt | --- StarCount.txt | --- CS.txt

Don't ever reference src within any path, it won't exist once the program is exported. 不要在任何路径中引用src ,一旦导出程序就不会存在。

All resources are stored as entries within a zip file (the Jar file), which means you can no longer use any file access methods like you are, instead you need to use Class#getResource or Class#getResourcesStream instead 所有资源都作为条目存储在zip文件(Jar文件)中,这意味着您不能再像以前那样使用任何文件访问方法,而是需要使用Class#getResourceClass#getResourcesStream来代替

Is there a way to do this properly without using .getResource() or .getResourseAsStream() 有没有办法在不使用.getResource()或.getResourseAsStream()的情况下正确执行此操作

No (or at least none I would be happy to discuses) 不(或者至少没有我会很乐意讨论)

because there is no constructor for FileReader with a URL or an InputStream 因为没有带有URL或InputStream的FileReader的构造函数

Actually, there is, or more to the point, there is a way, you can use a InputStreamReader instead of a FileReader , for example... 实际上,有一种方法,或者更重要的是,有一种方法,你可以使用InputStreamReader而不是FileReader ,例如......

try (BufferedReader reader = new InputStreamReader(getClass().getResourceAsStream("/pkg/Password.txt"))) {
    // Read as normal
} catch (IOException exp) {
    exp.printStackTrace();
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM