读取具有多行的文件并将其输出到JLabel

时间:2016-10-13 21:32:38

标签: java swing file-io jlabel

我正在阅读一个文件,该文件将包含大量文本行,我希望我的程序读取该文件中的所有行,并以相同的格式将它们输出到JLabel或任何可行的文件。

public String readSoldTo() {
        String file = "/Users/tylerbull/Documents/JUUL/Sold To/soldTo.txt";
        String data;

        try{

            BufferedReader br = new BufferedReader(new FileReader(file));

            while ((data = br.readLine()) != null) {
                System.out.println(data);
                return data;

                }
              br.close();
              }catch(Exception e) {

              }
        return file;
    }

1 个答案:

答案 0 :(得分:1)

构建JLabel以显示一行文本。是的,您可以通过陪审团来展示更多内容,但这是一个问题,并且通常会导致代码中出现未来问题。相反,我建议您在JTextArea中显示文本,然后通过使其背景颜色为null来删除其边框,以使其看起来像JLabel一样。如果你将它添加到JScrollPane,你会看到滚动条(如果适用)和滚动窗格的边框,这可能是一个问题。我还要使JTextArea不可聚焦且不可编辑,这样它就更像是一个标签,而不像接受用户交互的文本组件。

JTextComponents和JTextFields一样,都有一些机制允许你将它传递给读者,以便它可以参与文本文件的读取,如果需要可以保留换行符。有关详情,请参阅其read method API entry。与往常一样,请注意遵守Swing线程规则,并在后台线程中执行文本I / O,并在Swing事件线程上执行所有Swing变异调用。

你的代码也让我担心:

  • 你似乎忽略了异常
  • 您在上面的方法中有两个返回,并且两个返回两个截然不同的信息。

例如:

import java.awt.BorderLayout;
import java.awt.event.*;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import javax.swing.*;
import javax.swing.filechooser.FileNameExtensionFilter;

@SuppressWarnings("serial")
public class TextAreaAsLabel extends JPanel {
    private static final int TA_ROWS = 30;
    private static final int TA_COLS = 50;
    private static final Font TA_FONT = new Font(Font.DIALOG, Font.BOLD, 12);
    private JTextArea textArea = new JTextArea(TA_ROWS, TA_COLS);

    public TextAreaAsLabel() {
        // JButton and JPanel to open file chooser and get text
        JPanel buttonPanel = new JPanel();
        buttonPanel.add(new JButton(new ReadTextAction("Read Text")));

        // change JTextArea's properties so it "looks" like a multi-lined JLabel
        textArea.setLineWrap(true);
        textArea.setWrapStyleWord(true);
        textArea.setBackground(null);
        textArea.setBorder(null);
        textArea.setFocusable(false);
        textArea.setEditable(false);
        textArea.setFont(TA_FONT);

        // add components to *this* jpanel
        setLayout(new BorderLayout());
        add(textArea, BorderLayout.CENTER);
        add(buttonPanel, BorderLayout.PAGE_END);
    }

    private class ReadTextAction extends AbstractAction {
        public ReadTextAction(String name) {
            super(name);
            int mnemonic = (int) name.charAt(0);
            putValue(MNEMONIC_KEY, mnemonic);
        }

        @Override
        public void actionPerformed(ActionEvent e) {

            // create file chooser and limit it to selecting text files
            JFileChooser fileChooser = new JFileChooser();
            FileNameExtensionFilter filter = new FileNameExtensionFilter("Text Files", "txt");
            fileChooser.setFileFilter(filter);
            fileChooser.setMultiSelectionEnabled(false);

            // display it as a dialog
            int choice = fileChooser.showOpenDialog(TextAreaAsLabel.this);
            if (choice == JFileChooser.APPROVE_OPTION) {

                // get file, check if it exists, if it's not a directory
                File file = fileChooser.getSelectedFile();
                if (file.exists() && !file.isDirectory()) {
                    // use a reader, pass into text area's read method
                    try (BufferedReader br = new BufferedReader(new FileReader(file))){
                        textArea.read(br, "Reading in text file");
                    } catch (IOException e1) {
                        e1.printStackTrace();
                    }
                }
            }
        }
    }

    private static void createAndShowGui() {
        JFrame frame = new JFrame("Foo");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(new TextAreaAsLabel());
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> createAndShowGui());
    }
}