在java swing GUI中显示文件

时间:2013-03-24 18:08:16

标签: java swing filereader

在java swing Gui中显示“.txt”文件时出现问题。

我有代码来读取.txt文件并将其显示在cmd窗口中但似乎无法链接它以便它将显示在Gui中。

这是读取文件的代码:

import java.io.*;
public class ReadFile {
public static void main (String [] args) throws IOException{

String inputLine = "";
FileReader inputFile = new FileReader( "player.txt");
BufferedReader br = new BufferedReader(inputFile);

System.out.println( "\nThe contents of the file player.txt are ");

// Read lines of text from the file, looping until the
// null character (ctrl-z) is endountered
while( ( inputLine = br.readLine()) != null){
  System.out.println(inputLine); // Write to the screen
}
br.close();         // Close the stream

}  // end of main method
}  //  end of class

这是Swing Gui的代码

import java.awt.event.*;
import javax.swing.*;
import java.io.*;

public class GUI extends JFrame{

private JButton button;

//Set Hight and Width of Interface
private static final int WIDTH = 500;
private static final int HEIGHT = 500;

//Method to Create Inteface
public GUI(){
    createComponents();
    createDisplay();
    setSize(WIDTH, HEIGHT);
}

//An Action Listener To Contorl Action Preformed
class ClickListener implements ActionListener{
    public void actionPerformed(ActionEvent event){

    }
}
//Method to Create Button
private void createComponents(){
    button = new JButton("Click Me");
    ActionListener listener = new ClickListener();
    button.addActionListener(listener);

    JPanel panel = new JPanel();
    panel.add(button);
    add(panel);

}
//Method To Create Display
private void createDisplay(){
    JTextArea myArea = new JTextArea();

    JPanel panel1 = new JPanel();
    panel1.add(myArea);
    add(panel1);
}
}

以下是运行Swing GUI的代码

import javax.swing.*;

public class GUITest{
public static void main (String [] agrs){

    JFrame frame = new GUI();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);


}
}

所有文件与.txt文件一起位于笔记本电脑的同一文件夹中。我正在使用TextPad进行编码和编译。

所有的帮助都会感激不尽

感谢 德里克

2 个答案:

答案 0 :(得分:1)

您可以在ReadFile课程中创建Actionlistener课程的对象,并调用ReadFile的主要方法。

答案 1 :(得分:1)

  

这是读取文件的代码:

删除该代码,不需要它。

JTextArea有一个read(...)方法,您可以使用该方法直接将文本文件读入文本区域。