JTextArea: read(Reader in, Object desc) : JTextArea « javax.swing « Java by API






JTextArea: read(Reader in, Object desc)

 
import java.awt.BorderLayout;
import java.io.FileReader;
import java.io.IOException;

import javax.swing.JFrame;
import javax.swing.JTextField;

public class MainClass {
  public static void main(String args[]) throws Exception {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JTextField nameTextField = new JTextField();
    frame.add(nameTextField, BorderLayout.NORTH);
    
    FileReader reader = null;
    try {
      reader = new FileReader("fileName.txt");
      nameTextField.read(reader, "fileName.txt");
    } catch (IOException exception) {
      System.err.println("Load oops");
      exception.printStackTrace();
    } finally {
      if (reader != null) {
        try {
          reader.close();
        } catch (IOException exception) {
          System.err.println("Error closing reader");
          exception.printStackTrace();
        }
      }
    }

    
    frame.setSize(250, 100);
    frame.setVisible(true);
  }
}


           
         
  








Related examples in the same category

1.new JTextArea(Document document)
2.new JTextArea(String text)
3.new JTextArea(String text, int rows, int columns)
4.JTextArea: addCaretListener(CaretListener listener)
5.JTextArea: addUndoableEditListener(UndoableEditListener lis)
6.JTextArea: append(String str)
7.JTextArea: getActionMap()
8.JTextArea: getActions()
9.JTextArea: getCaretPosition()
10.JTextArea: getDocument()
11.JTextArea: getFont()
12.JTextArea: getHighlighter()
13.JTextArea: getKeymap()
14.JTextArea: getLineCount()
15.JTextArea: getLineEndOffset(int line)
16.JTextArea.getLineOfOffset(int offset)
17.JTextArea: getLineStartOffset(int line)
18.JTextArea: insert(String str, int pos)
19.JTextArea: isManagingFocus()
20.JTextArea: paste()
21.JTextArea: replaceRange(String str, int start, int end)
22.JTextArea: setCaretColor(Color c)
23.JTextField: setHorizontalAlignment(int pos)
24.JTextArea: setLineWrap(boolean wrap)
25.JTextArea: setTabSize(int size)
26.JTextArea: setWrapStyleWord(boolean word)
27.JTextArea: write(Writer out)