FileReaderとFileReader

2688 ワード

 public class Ftest extends JFrame {//  
 private static final long seralVersionUID = 1l;
 private JPanel jContentPane = null;//  
 private JTextArea jTextArea = null;//  
 private JPanel controlPanel = null;
 private JButton openButton = null;
 private JButton closeButton = null;
 /**************   *************/
 private JButton getOpenButton() {
  if (openButton == null) {
   openButton = new JButton();
   openButton.setText(" ");//  
   openButton.addActionListener(new ActionListener() {
    //  
    @Override
    public void actionPerformed(ActionEvent e) {
     // TODO Auto-generated method stub
     //  
     File file = new File("f://word.txt");
     try {
      FileWriter out = new FileWriter(file);
      String s = jTextArea.getText();
      out.write(s);
      out.close();
     } catch (Exception e1) {
      // TODO Auto-generated catch block
      e1.printStackTrace();
     }
    }
   });
  }
  return openButton;
 }
 private JButton getCloseButton() {
  if (closeButton == null) {
   closeButton = new JButton();
   closeButton.setText(" ");
   closeButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
     File file = new File("f://word.txt");
     try {
      FileReader in = new FileReader(file);
      char byt[] = new char[1024];
      int len = in.read(byt);
      jTextArea.setText(new String(byt, 0, len));
      in.close();
     } catch (Exception e1) {
      e1.printStackTrace();
     }
    }
   });
  }
  return closeButton;
 }
 public Ftest() {
  super();
  initialize();
 }
 public void initialize() {
  this.setSize(300, 200);
  this.setContentPane(getContentPane());
  this.setTitle("JFrame");
 }
 private JPanel getJContentPane() {
  if (jContentPane == null) {
   jContentPane = new JPanel();
   jContentPane.setLayout(new BorderLayout());
   jContentPane.add(getJTextArea(), BorderLayout.CENTER);
   jContentPane.add(getContentPane(), BorderLayout.SOUTH);
  }
  return jContentPane;
 }
 private Component getJTextArea() {
  
  return jTextArea;
 }
 public static void main(String[] args) {
Ftest thisClass=new Ftest();
thisClass.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
thisClass.setVisible(true);
 }
}