Exception Catcher : Exceptions « Language Basics « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Language Basics » ExceptionsScreenshots 
Exception Catcher
Exception Catcher
        
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.StringWriter;
import java.net.URL;
import java.util.EventListener;
import java.util.EventObject;
import java.util.Vector;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;

public class ExceptionCatcherTester {
  public ExceptionCatcherTester() {
    JFrame f = new JFrame("Exception Catcher Tester");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    final JTextArea textArea = new JTextArea();
    textArea.setEditable(false);

    JButton button = new JButton("Alive");
    ActionListener buttonListener = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        System.out.println("I'm Alive");
      }
    };
    button.addActionListener(buttonListener);

    final JTextField textField = new JTextField();
    ActionListener textFieldListener = new ActionListener() {
      public void actionPerformed(final ActionEvent e) {
        // Code to load URL contents in separate thread
        Runnable r = new Runnable() {
          public void run() {
            textField.setEditable(false);
            String urlString = e.getActionCommand();
            try {
              System.out.println("Loading " + urlString);
              textArea.setText("");
              URL url = new URL(urlString);
              InputStream is = url.openStream();
              InputStreamReader isr = new InputStreamReader(is);
              BufferedReader br = new BufferedReader(isr);
              StringWriter sw = new StringWriter();
              char buf[] new char[1024];
              int count;
              while ((count = br.read(buf, 01024)) != -1) {
                sw.write(buf, 0, count);
              }
              System.out.println("Done Loading");
              updateTextArea(textArea, sw.toString());
            catch (IOException e) {
              throw new ThreadException(this, e);
            finally {
              textField.setEditable(true);
            }
          }
        };
        ExceptionCatcherThread runner = new ExceptionCatcherThread(r);

        // Listener in case of exception
        ThreadListener threadListener = new ThreadListener() {
          public void exceptionHappened(ThreadException e) {
            Throwable t = e.getSourceException();
            final String message = t.getClass().getName() ": "
                + t.getMessage();
            Runnable r = new Runnable() {
              public void run() {
                JOptionPane.showMessageDialog(null, message);
              }
            };
            SwingUtilities.invokeLater(r);
          }
        };
        runner.addThreadExceptionListener(threadListener);

        runner.start();
      }
    };
    textField.addActionListener(textFieldListener);
    Container c = f.getContentPane();
    c.add(textField, BorderLayout.NORTH);
    JScrollPane pane = new JScrollPane(textArea);
    c.add(pane, BorderLayout.CENTER);
    c.add(button, BorderLayout.SOUTH);
    f.setSize(300300);
    f.show();
  }

  public void updateTextArea(final JTextArea ta, final String text) {
    // Because file loading happening not blocking event thread
    // We have to set text area in event thread
    Runnable r = new Runnable() {
      public void run() {
        ta.setText(text);
        ta.setCaretPosition(0);
      }
    };
    SwingUtilities.invokeLater(r);
  }

  public static void main(String args[]) {
    new ExceptionCatcherTester();
  }
}

class ExceptionCatcherThread extends ThreadGroup {

  private Runnable runnable;

  private Thread runner;

  private Vector listenerList = new Vector(3);

  /* For autonumbering our group. */
  private static int threadInitNumber;

  private static synchronized int nextThreadNum() {
    return threadInitNumber++;
  }

  public ExceptionCatcherThread(Runnable r) {
    super("ExceptionCatcherThread-" + nextThreadNum());
    runnable = r;
    // Create thread in this group
    runner = new Thread(this, runnable);
  }

  public void start() {
    runner.start();
  }

  /* Listener registration methods */

  public synchronized void addThreadExceptionListener(ThreadListener t) {
    listenerList.add(t);
  }

  public synchronized void removeThreadExceptionListener(ThreadListener t) {
    listenerList.remove(t);
  }

  public void uncaughtException(Thread source, Throwable t) {
    fireExceptionHappened(t);
    super.uncaughtException(source, t);
  }

  protected void fireExceptionHappened(Throwable t) {
    ThreadException e = (instanceof ThreadException(ThreadExceptiont
        new ThreadException(runnable, t);
    Vector l;
    synchronized (this) {
      l = (VectorlistenerList.clone();
    }
    for (int i = 0, n = listenerList.size(); i < n; i++) {
      ThreadListener tl = (ThreadListenerl.get(i);
      tl.exceptionHappened(e);
    }
  }
}

class ThreadException extends RuntimeException {
  Runnable runnable;

  Throwable exception;

  public ThreadException(Runnable r, Throwable t) {
    runnable = r;
    exception = t;
  }

  public ThreadException(Runnable r, Throwable t, String message) {
    super(message);
    runnable = r;
    exception = t;
  }

  public Runnable getRunnable() {
    return runnable;
  }

  public Throwable getSourceException() {
    return exception;
  }
}

class ThreadExceptionEvent extends EventObject {
  public ThreadExceptionEvent(ThreadException source) {
    super(source);
  }

  public Runnable getRunnable() {
    ThreadException source = (ThreadExceptiongetSource();
    return (Runnablesource.getRunnable();
  }
}

interface ThreadListener extends EventListener {
  public void exceptionHappened(ThreadException e);
}

           
         
    
    
    
    
    
    
    
  
Related examples in the same category
1. Illustrate various Exceptions Illustrate various Exceptions
2. Experience exceptionsExperience exceptions
3. StackTrace
4. Getting the Stack Trace of an Exception
5. What happens if a method declares an unchecked exception?
6. Simple demo of exceptionsSimple demo of exceptions
7. Simple demo of exceptions, with finally clauseSimple demo of exceptions, with finally clause
8. ThreadBasedCatcher - Demonstrate catching uncaught exceptions
9. Turning off Checked exceptions
10. Demonstrates exception chainingDemonstrates exception chaining
11. Finally is always executedFinally is always executed
12. Demonstrating the Exception MethodsDemonstrating the Exception Methods
13. Further embellishment of exception classesFurther embellishment of exception classes
14. The finally clause is always executedThe finally clause is always executed
15. Your own Exception classYour own Exception class
16. Catching exception hierarchiesCatching exception hierarchies
17. How an exception can be lost
18. Exception in main method
19. Ignoring RuntimeExceptionsIgnoring RuntimeExceptions
20. Demonstrating fillInStackTrace()Demonstrating fillInStackTrace()
21. Put printStackTrace() into a String: redirect the StackTrace to a String with a StringWriter/PrintWriter
22. Rethrow a different object from the one that was caughtRethrow a different object from the one that was caught
23. Inheriting your own exceptionsInheriting your own exceptions
24. Overridden methods may throw only the exceptions
25. Returns the output of printStackTrace as a String.
26. Locates a particular type of exception
27. Throw Exception OutThrow Exception Out
28. Get Deepest ThrowableGet Deepest Throwable
29. Make a string representation of the exception
30. Utility methods for dealing with stack traces
31. Returns the root cause of an exception
32. Utility class to work with throwables
33. Print all of the thread's information and stack traces
34. Convert an exception to a String with full stack trace
35. Return stack trace from the passed exception as a stringReturn stack trace from the passed exception as a string
36. Create a new RuntimeException, setting the cause if possible.
37. Create a new Exception, setting the cause if possible.
38. Set the cause of the Exception. Will detect if this is not allowed.
39. Get the stack trace of the supplied exception.
40. Display Stack Trace Information with StackTraceElement
41. A collection of utility methods for manipulating exceptions
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.