Загрузка текстового файла в текстовую область - PullRequest
3 голосов
/ 04 мая 2011

Прежде всего, я очень простой в Java. Я пытаюсь просмотреть файл .txt и загрузить его содержимое в текстовую область. Я закончил часть, до которой я получаю файл от JFileChooser, теперь я не знаю, как сделать остальные.

.
.
.

File selFile = new File(fileChooser.getSelectedfile());
/// From here I want to load its content to a textarea "txtArea"

Ответы [ 4 ]

11 голосов
/ 04 мая 2011

Используйте методы read (...) и write (...), которые поддерживаются всеми текстовыми компонентами Swing. Простой пример:

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

class TextAreaLoad
{
    public static void main(String a[])
    {
        final JTextArea edit = new JTextArea(30, 60);
        edit.setText("one\ntwo\nthree");
        edit.append("\nfour\nfive");

        JButton read = new JButton("Read TextAreaLoad.txt");
        read.addActionListener( new ActionListener()
        {
            public void actionPerformed(ActionEvent e)
            {
                try
                {
                    FileReader reader = new FileReader( "TextAreaLoad.txt" );
                    BufferedReader br = new BufferedReader(reader);
                    edit.read( br, null );
                    br.close();
                    edit.requestFocus();
                }
                catch(Exception e2) { System.out.println(e2); }
            }
        });

        JButton write = new JButton("Write TextAreaLoad.txt");
        write.addActionListener( new ActionListener()
        {
            public void actionPerformed(ActionEvent e)
            {
                try
                {
                    FileWriter writer = new FileWriter( "TextAreaLoad.txt" );
                    BufferedWriter bw = new BufferedWriter( writer );
                    edit.write( bw );
                    bw.close();
                    edit.setText("");
                    edit.requestFocus();
                }
                catch(Exception e2) {}
            }
        });

        JFrame frame = new JFrame("TextArea Load");
        frame.getContentPane().add( new JScrollPane(edit), BorderLayout.NORTH );
        frame.getContentPane().add(read, BorderLayout.WEST);
        frame.getContentPane().add(write, BorderLayout.EAST);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo( null );
        frame.setVisible(true);
    }
}
1 голос
/ 04 мая 2011
BufferedReader in = null;
try {
    in = new BufferedReader(new FileReader(selFile));
    String str;
    while ((str = in.readLine()) != null) {
        jtextArea.append(str);
    }
} catch (IOException e) {
} finally {
    try { in.close(); } catch (Exception ex) { }
}
0 голосов
/ 08 декабря 2014

Для отступа и разрыва строки вы должны использовать "\ n" перед добавлением к текстовой области.

  BufferedReader buff = null;
  try {
       buff = new BufferedReader(new FileReader(selFile));
       String str;
       while ((str = buff.readLine()) != null) {
       jtextArea.append("\n"+str);
   }
 } catch (IOException e) {
  } finally {
    try { in.close(); } catch (Exception ex) { }
    }
0 голосов
/ 04 мая 2011

Используйте BufferedReader для чтения .txt файла построчно. Затем вы можете добавить каждую строку в текстовую область.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...