Reputation: 497
I have a program that get's input string with file path in one JTextArea and then loads it's content to a second JTextArea. Problem is that when using JTextArea I cannot add an actionListener that will load content in the second JTextArea when leaving this field. How to get around this problem ?
protected JTextArea inputField, outputField;
public Main(){
super(new BorderLayout());
inputField = new JTextArea(5, 20);
outputField = new JTextArea(2, 20);
//inputField.addActionListener(this);
inputField.setEditable(false);
JScrollPane scroller2 = new JScrollPane(inputField);
JScrollPane scroller1 = new JScrollPane(outputField);
this.add(scroller1, BorderLayout.WEST);
this.add(scroller2, BorderLayout.EAST);
}
public void actionPerformed(ActionEvent evt) {
String text = inputField.getText();
(loading contents of file)
}
Upvotes: 3
Views: 17487
Reputation: 4420
If you need only ActionListener, check this example:
textArea.addFocusListener(new FocusAdapter() {
@Override
public void focusLost(FocusEvent e) {
actionListener.actionPerformed(new ActionEvent(e.getSource(), e.getID(), "focusLost"));
}
});
Its equals:
textArea.addActionListener(actionListener);
P. S. actionListener must be final or class field for use in that way.
Upvotes: 1
Reputation: 168815
Or, to flesh out my first comment, try this SSCCE that uses a JButton (& a JEditorPane for the content).
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.border.*;
import java.io.File;
class LoadDocument {
public static void main(String[] args) {
Runnable r = new Runnable() {
public void run() {
final JFrame f = new JFrame();
f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
JPanel contentPane = new JPanel( new BorderLayout(3,3) );
contentPane.setBorder( new EmptyBorder(5,5,5,5) );
// has convenience methods to load documents..
final JEditorPane content = new JEditorPane();
JScrollPane sp = new JScrollPane(content);
sp.setPreferredSize( new Dimension(400,400) );
contentPane.add( sp, BorderLayout.CENTER );
final JFileChooser jfc = new JFileChooser();
JButton open = new JButton("Open File");
open.addActionListener( new ActionListener(){
public void actionPerformed(ActionEvent ae) {
int result = jfc.showOpenDialog(f);
if (result==JFileChooser.APPROVE_OPTION) {
File file = jfc.getSelectedFile();
try {
content.setPage( file.toURI().toURL() );
} catch(Exception e) {
e.printStackTrace();
JOptionPane.showMessageDialog(
f,
"File load error!",
e.getMessage(),
JOptionPane.ERROR_MESSAGE
);
}
}
}
} );
JToolBar tb = new JToolBar();
tb.add(open);
contentPane.add( tb, BorderLayout.NORTH );
f.setContentPane( contentPane );
f.pack();
f.setLocationByPlatform(true);
f.setVisible(true);
}
};
SwingUtilities.invokeLater(r);
}
}
Upvotes: 2
Reputation: 27326
You do not want an actionListener, you want a FocusListener.
JTextArea text = ...;
text.addFocusListener(new FocusListener() {
public void focusGained(FocusEvent e) {}
public void focusLost(FocusEvent e) {
// Load your content.
}
});
Upvotes: 7