在Java GUI中读取文本文件

时间:2012-12-02 06:39:36

标签: java swing user-interface file-io jtextcomponent

我想要做的就是显示txt文件的全部内容。我该怎么做呢?我假设我将JLabel的文本设置为包含整个文件的字符串,但是如何将整个文件转换为字符串?此外,txt文件是否在Eclipse中的src文件夹中?

4 个答案:

答案 0 :(得分:4)

此代码用于在Jtext区域中显示所选文件内容

      static void readin(String fn, JTextComponent pane) 
              {
             try 
              {
               FileReader fr = new FileReader(fn);
               pane.read(fr, null);
               fr.close();
              }
                 catch (IOException e) 
                 {
                  System.err.println(e);
                 }
              }

选择文件

         String cwd = System.getProperty("user.dir");
         final JFileChooser jfc = new JFileChooser(cwd);

            JButton filebutton = new JButton("Choose");
            filebutton.addActionListener(new ActionListener() 
            {
            public void actionPerformed(ActionEvent e) 
            {
                if (jfc.showOpenDialog(frame) !=JFileChooser.APPROVE_OPTION)

                        return;
                  File f = jfc.getSelectedFile();



            readin(f.toString(), textpane);

                  SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        frame.setCursor(Cursor.
                            getPredefinedCursor(
                            Cursor.DEFAULT_CURSOR));

                    }
                });
            }
        });

答案 1 :(得分:3)

  

我想要做的就是显示txt文件的全部内容。怎么样   我会这样做吗?我假设我会设置文本   一个JLabel是一个包含整个文件的字符串,但是如何将整个文件放到一个字符串中呢?

您最好使用JTextArea来执行此操作。您还可以查看read()方法。

  

txt文件是否在Eclipse的src文件夹中?

不。您可以从任何位置读取文件。关于"Reading, Writing, and Creating Files"的教程将是一个开始的好地方

答案 2 :(得分:2)

  • 在项目的工作文件夹中创建文本文件
  • 逐行阅读您的文字文件
  • 将订单项内容存储在stringBuilder变量
  • 然后将下一行内容附加到stringBuilder变量
  • 然后将StringBuilder变量的内容分配给JLabel的文字属性

但将整个文件的数据存储到JLabel,使用JTextArea或任何其他文本容器并不是一个好主意。

像这样阅读你的文件:

BufferedReader br = new BufferedReader(new FileReader("file.txt"));
try {
    StringBuilder sb = new StringBuilder();
    String line = br.readLine();

    while (line != null) {
        sb.append(line);
       line = br.readLine();
    }
    String everything = sb.toString();
} finally {
    br.close();
}

现在将所有内容的值分配给JLabelJTextArea

JLabel1.text=everything;

答案 3 :(得分:1)

  1. 使用java.io打开文件流。
  2. 按行或字节从文件中读取内容。
  3. 将内容附加到StringBuilderStringBuffer
  4. StringBuilderStringBuffer设为JLable.text
  5. 但我建议使用JTextArea ..

    您无需将此文件放在src文件夹中。