Или, чтобы конкретизировать мой первый комментарий, попробуйте этот SSCCE, который использует JButton (& JEditorPane для содержимого).
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);
}
}