// Fig. 24.3: ReadServerFile.java // Use a JEditorPane to display the contents of a file on a Web server. import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.IOException; import javax.swing.JEditorPane; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.JScrollPane; import javax.swing.JTextField; import javax.swing.event.HyperlinkEvent; import javax.swing.event.HyperlinkListener; public class ReadServerFile extends JFrame { private JTextField enterField; // JTextField to enter site name private JEditorPane contentsArea; // to display Web site // set up GUI public ReadServerFile() { super( "Simple Web Browser" ); // create enterField and register its listener enterField = new JTextField( "Enter file URL here" ); enterField.addActionListener( new ActionListener() { // get document specified by user public void actionPerformed( ActionEvent event ) { getThePage( event.getActionCommand() ); } // end method actionPerformed } // end inner class ); // end call to addActionListener add( enterField, BorderLayout.NORTH ); contentsArea = new JEditorPane(); // create contentsArea contentsArea.setEditable( false ); contentsArea.addHyperlinkListener( new HyperlinkListener() { // if user clicked hyperlink, go to specified page public void hyperlinkUpdate( HyperlinkEvent event ) { if ( event.getEventType() == HyperlinkEvent.EventType.ACTIVATED ) getThePage( event.getURL().toString() ); } // end method hyperlinkUpdate } // end inner class ); // end call to addHyperlinkListener add( new JScrollPane( contentsArea ), BorderLayout.CENTER ); setSize( 400, 300 ); // set size of window setVisible( true ); // show window } // end ReadServerFile constructor // load document private void getThePage( String location ) { try // load document and display location { contentsArea.setPage( location ); // set the page enterField.setText( location ); // set the text } // end try catch ( IOException ioException ) { JOptionPane.showMessageDialog( this, "Error retrieving specified URL", "Bad URL", JOptionPane.ERROR_MESSAGE ); } // end catch } // end method getThePage } // end class ReadServerFile /************************************************************************** * (C) Copyright 1992-2005 by Deitel & Associates, Inc. and * * Pearson Education, Inc. All Rights Reserved. * * * * DISCLAIMER: The authors and publisher of this book have used their * * best efforts in preparing the book. These efforts include the * * development, research, and testing of the theories and programs * * to determine their effectiveness. The authors and publisher make * * no warranty of any kind, expressed or implied, with regard to these * * programs or to the documentation contained in these books. The authors * * and publisher shall not be liable in any event for incidental or * * consequential damages in connection with, or arising out of, the * * furnishing, performance, or use of these programs. * *************************************************************************/