例外捕获 : 异常 « 语言基础知识 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 语言基础知识 » 异常屏幕截图 
例外捕获
例外捕获
 
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. 经验例外经验例外
3. StackTrace
4. 使用堆栈跟踪的一个例外情况
5. What happens if a method declares an unchecked exception?
6. 简单的演示例外简单的演示例外
7. 简单的演示例外,最后Finally简单的演示例外,最后Finally
8. ThreadBasedCatcher - Demonstrate catching uncaught exceptions
9. 关闭选中的例外
10. 表明例外链接表明例外链接
11. 最后总是捕获最后总是捕获
12. 表明了异常的方法表明了异常的方法
13. 进一步点缀的异常类进一步点缀的异常类
14. The finally clause is always executedThe finally clause is always executed
15. 你自己的异常处理类你自己的异常处理类
16. 捕捉异常系捕捉异常系
17. 例外是如何丢失的
18. 主要方法中的例外
19. 无视RuntimeExceptions无视RuntimeExceptions
20. Demonstrating fillInStackTrace()Demonstrating fillInStackTrace()
21. Put printStackTrace() into a String: redirect the StackTrace to a String with a StringWriter/PrintWriter
22. Rethrow不同的物体从一个被抓获Rethrow不同的物体从一个被抓获
23. 继承自己的例外继承自己的例外
24. Overridden methods may throw only the exceptions
25. 掷异输出掷异输出
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.