AWTEventMulticaster

本文介绍AWTEventMulticaster类的功能和使用方法,包括如何添加和移除事件监听器,以及如何处理各种AWT事件。适用于Java开发者了解事件多播机制。

http://download.java.net/jdk/jdk-api-localizations/jdk-api-zh-cn/publish/1.6.0/html/zh_CN/api/java/awt/AWTEventMulticaster.html

 

 

 

 

 

 

 

 


JavaTM  Platform
Standard Ed. 6


java.awt
类 AWTEventMulticaster

java.lang.Object

  java.awt.AWTEventMulticaster

所有已实现的接口:
ActionListener , AdjustmentListener , ComponentListener , ContainerListener , FocusListener , HierarchyBoundsListener , HierarchyListener , InputMethodListener , ItemListener , KeyListener , MouseListener , MouseMotionListener , MouseWheelListener , TextListener , WindowFocusListener , WindowListener , WindowStateListener , EventListener

public class AWTEventMulticaster
extends Object implements ComponentListener , ContainerListener , FocusListener , KeyListener , MouseListener , MouseMotionListener , WindowListener , WindowFocusListener , WindowStateListener , ActionListener , ItemListener , AdjustmentListener , TextListener , InputMethodListener , HierarchyListener , HierarchyBoundsListener , MouseWheelListener

AWTEventMulticaster 实现对 java.awt.event 包中定义的 AWT 事件的指派,该指派是有效的、线程安全的多路广播事件指派。

以下实例阐释了如何使用此类:


 public myComponent extends Component {
     ActionListener actionListener = null;

     public synchronized void addActionListener(ActionListener l) {
           actionListener = AWTEventMulticaster.add(actionListener, l);
     }
     public synchronized void removeActionListener(ActionListener l) {
           actionListener = AWTEventMulticaster.remove(actionListener, l);
     }
     public void processEvent(AWTEvent e) {
         // when event occurs which causes "action" semantic
         ActionListener listener = actionListener;
         if (listener != null) {
             listener.actionPerformed(new ActionEvent());
         }
     }
 }
 

需要重点注意的是 addremove 方法的第一个参数,它是维护侦听器的字段。此外,必须将 addremove 方法的结果分配给维护侦听器的字段。

AWTEventMulticaster 是作为一对 EventListeners 实现的,它们在构造时被设置。AWTEventMulticaster 是不可变的。addremove 方法不得以任何方式改变 AWTEventMulticaster 。如有必要,可以创建一个新的 AWTEventMulticaster 。以这种方式在指派事件的过程中添加和移除侦听器是安全的。但是,不会向目前正指派的事件通知事件指派操作过程中添加的事件侦听器。

允许所有 add 方法使用 null 参数。如果第一个参数是 null ,则返回第二个参数。如果第一个参数不是 null ,而第二个参数是 null ,则返回第一个参数。如果两个参数都是 non-null ,则使用这两个参数创建一个新的 AWTEventMulticaster 并返回它。

对于使用两个参数的 remove 方法,返回以下内容:

  • null ,如果第一个参数是 null ,或者参数相等(== )。
  • 第一个参数,如果第一个参数不是一个 AWTEventMulticaster 实例。
  • 在将第二个参数提供给 remove(EventListener) 方法的情况下,对第一个参数调用 remove(EventListener) 的结果。

Swing 基于类似的逻辑使用 EventListenerList 。有关细节,请参见 EventListenerList

 

 

从以下版本开始:
1.1
另请参见:
EventListenerList

字段摘要
protected  EventListener a
           
protected  EventListener b
           

 

构造方法摘要
protected AWTEventMulticaster (EventListener  a, EventListener  b)
          创建一个将侦听器 a 和侦听器 b 链接起来的事件多路广播器实例。

 

方法摘要
 void actionPerformed (ActionEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 actionPerformed 方法处理 actionPerformed 事件。
static ActionListener add (ActionListener  a, ActionListener  b)
          添加操作侦听器 a 和操作侦听器 b,并返回得到的多路广播侦听器。
static AdjustmentListener add (AdjustmentListener  a, AdjustmentListener  b)
          添加调整侦听器 a 和调整侦听器 b,并返回得到的多路广播侦听器。
static ComponentListener add (ComponentListener  a, ComponentListener  b)
          添加组件侦听器 a 和组件侦听器 b,并返回得到的多路广播侦听器。
static ContainerListener add (ContainerListener  a, ContainerListener  b)
          添加容器侦听器 a 和容器侦听器 b,并返回得到的多路广播侦听器。
static FocusListener add (FocusListener  a, FocusListener  b)
          添加焦点侦听器 a 和焦点侦听器 b,并返回得到的多路广播侦听器。
static HierarchyBoundsListener add (HierarchyBoundsListener  a, HierarchyBoundsListener  b)
          添加层次结构边界侦听器 a 和层次结构边界侦听器 b,并返回得到的多路广播侦听器。
static HierarchyListener add (HierarchyListener  a, HierarchyListener  b)
          添加层次结构侦听器 a 和层次结构侦听器 b,并返回得到的多路广播侦听器。
static InputMethodListener add (InputMethodListener  a, InputMethodListener  b)
          添加输入方法侦听器 a 和输入方法侦听器 b,并返回得到的多路广播侦听器。
static ItemListener add (ItemListener  a, ItemListener  b)
          添加项侦听器 a 和项侦听器 b,并返回得到的多路广播侦听器。
static KeyListener add (KeyListener  a, KeyListener  b)
          添加键侦听器 a 和键侦听器 b,并返回得到的多路广播侦听器。
static MouseListener add (MouseListener  a, MouseListener  b)
          添加鼠标侦听器 a 和鼠标侦听器 b,并返回得到的多路广播侦听器。
static MouseMotionListener add (MouseMotionListener  a, MouseMotionListener  b)
          添加鼠标移动侦听器 a 和鼠标移动侦听器 b,并返回得到的多路广播侦听器。
static MouseWheelListener add (MouseWheelListener  a, MouseWheelListener  b)
          添加鼠标滚轮侦听器 a 和鼠标滚轮侦听器 b,并返回得到的多路广播侦听器。
static TextListener add (TextListener  a, TextListener  b)
           
static WindowFocusListener add (WindowFocusListener  a, WindowFocusListener  b)
          添加窗口焦点侦听器 a 和窗口焦点侦听器 b,并返回得到的多路广播侦听器。
static WindowListener add (WindowListener  a, WindowListener  b)
          添加窗口侦听器 a 和窗口侦听器 b,并返回得到的多路广播侦听器。
static WindowStateListener add (WindowStateListener  a, WindowStateListener  b)
          添加窗口状态侦听器 a 和窗口状态侦听器 b,并返回得到的多路广播侦听器。
protected static EventListener addInternal (EventListener  a, EventListener  b)
          从正添加的侦听器 a 和侦听器 b 中一起返回得到的多路广播侦听器。
 void adjustmentValueChanged (AdjustmentEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 adjustmentValueChanged 方法处理 adjustmentValueChanged 事件。
 void ancestorMoved (HierarchyEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 ancestorMoved 方法处理 ancestorMoved 事件。
 void ancestorResized (HierarchyEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 ancestorResized 方法处理 ancestorResized 事件。
 void caretPositionChanged (InputMethodEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 caretPositionChanged 方法处理 caretPositionChanged 事件。
 void componentAdded (ContainerEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 componentAdded 方法处理 componentAdded 容器事件。
 void componentHidden (ComponentEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 componentHidden 方法处理 componentHidden 事件。
 void componentMoved (ComponentEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 componentMoved 方法处理 componentMoved 事件。
 void componentRemoved (ContainerEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 componentRemoved 方法处理 componentRemoved 容器事件。
 void componentResized (ComponentEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 componentResized 方法处理 componentResized 事件。
 void componentShown (ComponentEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 componentShown 方法处理 componentShown 事件。
 void focusGained (FocusEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 focusGained 方法处理 focusGained 事件。
 void focusLost (FocusEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 focusLost 方法处理 focusLost 事件。
static
<T extends EventListener >
T[]
getListeners (EventListener  l, Class <T> listenerType)
          返回通过指定的 java.util.EventListener 链接为 Foo Listener 的所有对象的数组。
 void hierarchyChanged (HierarchyEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 hierarchyChanged 方法处理 hierarchyChanged 事件。
 void inputMethodTextChanged (InputMethodEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 inputMethodTextChanged 方法处理 inputMethodTextChanged 事件。
 void itemStateChanged (ItemEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 itemStateChanged 方法处理 itemStateChanged 事件。
 void keyPressed (KeyEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 keyPressed 方法处理 keyPressed 事件。
 void keyReleased (KeyEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 keyReleased 方法处理 keyReleased 事件。
 void keyTyped (KeyEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 keyTyped 方法处理 keyTyped 事件。
 void mouseClicked (MouseEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 mouseClicked 方法处理 mouseClicked 事件。
 void mouseDragged (MouseEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 mouseDragged 方法处理 mouseDragged 事件。
 void mouseEntered (MouseEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 mouseEntered 方法处理 mouseEntered 事件。
 void mouseExited (MouseEvent  e)
          通过在侦听器 a 和侦听器 b 上调用 mouseExited 方法处理 mouseExited 事件。
 void mouseMoved (
17:12:40 [client connect test runnable] DEBUG - Client connect test... 17:12:40 [client connect test runnable] DEBUG - callid=1760433160830-5018 17:12:40 [client connect test runnable] DEBUG - begin nc.login.bs.INCLoginService.connectTest(java.lang.String,java.lang.String) {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} 17:12:40 [client connect test runnable] WARN - TraceRemoteCall java.lang.Exception at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:235) at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:114) at nc.bs.framework.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:84) at com.sun.proxy.$Proxy2.connectTest(Unknown Source) at nc.desktop.ui.ClientConnectTestRunnable.run(ClientConnectTestRunnable.java:32) at nc.schedule.engine.ScheduleTimerTask$RunImple.run(ScheduleTimerTask.java:38) at nc.schedule.engine.ScheduleTimerTask$WorkThread.run(ScheduleTimerTask.java:59) 17:12:40 [client connect test runnable] DEBUG - begin serialize 17:12:40 [client connect test runnable] DEBUG - end serialize | costtime=0ms 17:12:40 [client connect test runnable] DEBUG - begin write to net 17:12:40 [client connect test runnable] DEBUG - end write to net size=473 | costtime=0ms 17:12:40 [client connect test runnable] DEBUG - begin read from net 17:12:40 [client connect test runnable] DEBUG - end read from net size=229 | costtime=3ms 17:12:40 [client connect test runnable] DEBUG - begin deserialize 17:12:40 [client connect test runnable] DEBUG - end deserialize | costtime=0ms 17:12:40 [client connect test runnable] DEBUG - end nc.login.bs.INCLoginService.connectTest(java.lang.String,java.lang.String) {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} | costtime=6ms 17:12:41 [AWT-EventQueue-0] DEBUG - action is not a key function. action code is ApproveInfo 17:12:41 [AWT-EventQueue-0] DEBUG - #busiaction:费用清单-查看审批意见 17:12:41 [AWT-EventQueue-0] DEBUG - Entering class nc.ui.fdcpr.uipub.action.JZFDCPFApproveStatusInfoAction.actionPerformed 17:12:41 [AWT-EventQueue-0] DEBUG - The ImplClzName is:nc.uap.pf.metadata.FlowBizImpl 17:12:41 [AWT-EventQueue-0] ERROR - AbstractBizInterface: getAttributeValue: 属性名为空 17:12:41 [AWT-EventQueue-0] DEBUG - Found Template in Cache, KEY:BILL_.101609.historymsg.null.1001N11000000000446V.0001N110000000000EWW ID:1001Z010000000001H9T TS:2015-06-04 18:28:02 17:12:41 [AWT-EventQueue-0] DEBUG - callid=1760433161494-2182 17:12:41 [AWT-EventQueue-0] DEBUG - begin nc.itf.uap.billtemplate.IBillTemplateQry.findBillTempletDatas([Lnc.vo.pub.bill.BillOperaterEnvVO;) {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} 17:12:41 [AWT-EventQueue-0] WARN - TraceRemoteCall java.lang.Exception at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:235) at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:114) at nc.bs.framework.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:84) at com.sun.proxy.$Proxy49.findBillTempletDatas(Unknown Source) at nc.ui.pub.bill.BillTemplateHelper.findBillTempletDatas(BillTemplateHelper.java:118) at nc.ui.pub.bill.BillUIUtil.getDefaultTempletStatics(BillUIUtil.java:151) at nc.ui.pub.bill.BillUIUtil.getDefaultTempletStatic(BillUIUtil.java:60) at nc.ui.pub.bill.BillUIUtil.getDefaultTempletStatic(BillUIUtil.java:29) at nc.ui.pub.bill.BillListPanel.getDefaultTemplet(BillListPanel.java:689) at nc.ui.pub.workflownote.FlowAdminPanel.getBillListPanel(FlowAdminPanel.java:623) at nc.ui.pub.workflownote.FlowAdminPanel.getBrowsingTabbedPane(FlowAdminPanel.java:705) at nc.ui.pub.workflownote.FlowAdminPanel.getWorkflowNotePanel(FlowAdminPanel.java:692) at nc.ui.pub.workflownote.FlowAdminPanel.getSpCenter(FlowAdminPanel.java:685) at nc.ui.pub.workflownote.FlowAdminPanel.initUI(FlowAdminPanel.java:255) at nc.ui.pub.workflownote.FlowAdminPanel.init(FlowAdminPanel.java:246) at nc.ui.pub.workflownote.FlowAdminPanel.<init>(FlowAdminPanel.java:214) at nc.ui.pub.workflownote.FlowAdminPanel.<init>(FlowAdminPanel.java:199) at nc.ui.pub.workflownote.FlowStateDlg.getAdminPanel(FlowStateDlg.java:83) at nc.ui.pub.workflownote.FlowStateDlg.getUIDialogContentPane(FlowStateDlg.java:66) at nc.ui.pub.workflownote.FlowStateDlg.initialize(FlowStateDlg.java:108) at nc.ui.pub.workflownote.FlowStateDlg.<init>(FlowStateDlg.java:57) at nc.ui.pubapp.uif2app.actions.pflow.PFApproveStatusInfoAction.doAction(PFApproveStatusInfoAction.java:54) at nc.ui.uif2.NCAction.actionPerformed(NCAction.java:85) at nc.funcnode.ui.action.ActionDelegate.actionPerformed(ActionDelegate.java:296) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022) at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348) at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402) at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259) at javax.swing.AbstractButton.doClick(AbstractButton.java:376) at nc.ui.plaf.basic.UIMenuItemUI.doClick(UIMenuItemUI.java:1191) at nc.ui.plaf.basic.UIMenuItemUI$MouseInputHandler.mouseReleased(UIMenuItemUI.java:1016) at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:289) at java.awt.Component.processMouseEvent(Component.java:6539) at javax.swing.JComponent.processMouseEvent(JComponent.java:3324) at java.awt.Component.processEvent(Component.java:6304) at java.awt.Container.processEvent(Container.java:2239) at java.awt.Component.dispatchEventImpl(Component.java:4889) at java.awt.Container.dispatchEventImpl(Container.java:2297) at java.awt.Component.dispatchEvent(Component.java:4711) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4535) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476) at java.awt.Container.dispatchEventImpl(Container.java:2283) at java.awt.Component.dispatchEvent(Component.java:4711) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760) at java.awt.EventQueue.access$500(EventQueue.java:97) at java.awt.EventQueue$3.run(EventQueue.java:709) at java.awt.EventQueue$3.run(EventQueue.java:703) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84) at java.awt.EventQueue$4.run(EventQueue.java:733) at java.awt.EventQueue$4.run(EventQueue.java:731) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74) at java.awt.EventQueue.dispatchEvent(EventQueue.java:730) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) 17:12:41 [AWT-EventQueue-0] DEBUG - begin serialize 17:12:41 [AWT-EventQueue-0] DEBUG - end serialize | costtime=0ms 17:12:41 [AWT-EventQueue-0] DEBUG - begin write to net 17:12:41 [AWT-EventQueue-0] DEBUG - end write to net size=681 | costtime=0ms 17:12:41 [AWT-EventQueue-0] DEBUG - begin read from net 17:12:41 [AWT-EventQueue-0] DEBUG - end read from net size=213 | costtime=8ms 17:12:41 [AWT-EventQueue-0] DEBUG - begin deserialize 17:12:41 [AWT-EventQueue-0] DEBUG - end deserialize | costtime=0ms 17:12:41 [AWT-EventQueue-0] DEBUG - end nc.itf.uap.billtemplate.IBillTemplateQry.findBillTempletDatas([Lnc.vo.pub.bill.BillOperaterEnvVO;) {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} | costtime=9ms 17:12:41 [AWT-EventQueue-0] INFO - 模板加载成功! 17:12:41 [AWT-EventQueue-0] DEBUG - callid=1760433161506-2375 17:12:41 [AWT-EventQueue-0] DEBUG - begin nc.itf.uap.pf.IPFWorkflowQry.queryFlowHistoryQryResult(java.lang.String,java.lang.String,int) {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} 17:12:41 [AWT-EventQueue-0] WARN - TraceRemoteCall java.lang.Exception at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:235) at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:114) at nc.bs.framework.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:84) at com.sun.proxy.$Proxy68.queryFlowHistoryQryResult(Unknown Source) at nc.ui.pub.workflownote.FlowAdminPanel.queryFlowFistoryInfo(FlowAdminPanel.java:292) at nc.ui.pub.workflownote.FlowAdminPanel.initData(FlowAdminPanel.java:280) at nc.ui.pub.workflownote.FlowAdminPanel.init(FlowAdminPanel.java:249) at nc.ui.pub.workflownote.FlowAdminPanel.<init>(FlowAdminPanel.java:214) at nc.ui.pub.workflownote.FlowAdminPanel.<init>(FlowAdminPanel.java:199) at nc.ui.pub.workflownote.FlowStateDlg.getAdminPanel(FlowStateDlg.java:83) at nc.ui.pub.workflownote.FlowStateDlg.getUIDialogContentPane(FlowStateDlg.java:66) at nc.ui.pub.workflownote.FlowStateDlg.initialize(FlowStateDlg.java:108) at nc.ui.pub.workflownote.FlowStateDlg.<init>(FlowStateDlg.java:57) at nc.ui.pubapp.uif2app.actions.pflow.PFApproveStatusInfoAction.doAction(PFApproveStatusInfoAction.java:54) at nc.ui.uif2.NCAction.actionPerformed(NCAction.java:85) at nc.funcnode.ui.action.ActionDelegate.actionPerformed(ActionDelegate.java:296) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022) at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348) at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402) at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259) at javax.swing.AbstractButton.doClick(AbstractButton.java:376) at nc.ui.plaf.basic.UIMenuItemUI.doClick(UIMenuItemUI.java:1191) at nc.ui.plaf.basic.UIMenuItemUI$MouseInputHandler.mouseReleased(UIMenuItemUI.java:1016) at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:289) at java.awt.Component.processMouseEvent(Component.java:6539) at javax.swing.JComponent.processMouseEvent(JComponent.java:3324) at java.awt.Component.processEvent(Component.java:6304) at java.awt.Container.processEvent(Container.java:2239) at java.awt.Component.dispatchEventImpl(Component.java:4889) at java.awt.Container.dispatchEventImpl(Container.java:2297) at java.awt.Component.dispatchEvent(Component.java:4711) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4535) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476) at java.awt.Container.dispatchEventImpl(Container.java:2283) at java.awt.Component.dispatchEvent(Component.java:4711) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760) at java.awt.EventQueue.access$500(EventQueue.java:97) at java.awt.EventQueue$3.run(EventQueue.java:709) at java.awt.EventQueue$3.run(EventQueue.java:703) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84) at java.awt.EventQueue$4.run(EventQueue.java:733) at java.awt.EventQueue$4.run(EventQueue.java:731) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74) at java.awt.EventQueue.dispatchEvent(EventQueue.java:730) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) 17:12:41 [AWT-EventQueue-0] DEBUG - begin serialize 17:12:41 [AWT-EventQueue-0] DEBUG - end serialize | costtime=0ms 17:12:41 [AWT-EventQueue-0] DEBUG - begin write to net 17:12:41 [AWT-EventQueue-0] DEBUG - end write to net size=553 | costtime=0ms 17:12:41 [AWT-EventQueue-0] DEBUG - begin read from net 17:12:41 [AWT-EventQueue-0] DEBUG - end read from net size=629 | costtime=15ms 17:12:41 [AWT-EventQueue-0] DEBUG - begin deserialize 17:12:41 [AWT-EventQueue-0] DEBUG - end deserialize | costtime=0ms 17:12:41 [AWT-EventQueue-0] DEBUG - end nc.itf.uap.pf.IPFWorkflowQry.queryFlowHistoryQryResult(java.lang.String,java.lang.String,int) {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} | costtime=16ms 17:12:41 [dbcache-update-thread] DEBUG - isUsing()false,isLocked()false[ds=design,state=STOPED,using=false] 17:12:41 [dbcache-update-thread] DEBUG - dbcache update service is now updating client versions... 17:12:41 [dbcache-update-thread] DEBUG - download versions from server, afterTs=[2025-10-14 17:08:33] 17:12:41 [dbcache-update-thread] DEBUG - callid=1760433161752-7489 17:12:41 [dbcache-update-thread] DEBUG - begin nc.bs.dbcache.intf.IOutDateVersion.getOutDateVersions(java.lang.String) {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} 17:12:41 [dbcache-update-thread] WARN - TraceRemoteCall java.lang.Exception at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:235) at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:114) at nc.bs.framework.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:84) at com.sun.proxy.$Proxy22.getOutDateVersions(Unknown Source) at nc.ui.dbcache.version.ClientCacheVersionBS.getOutDateVersions(ClientCacheVersionBS.java:121) at nc.ui.dbcache.version.ClientCacheVersionBS.updateVersions(ClientCacheVersionBS.java:252) at nc.ui.dbcache.plugin.VersionUpdatePlugin.execute(VersionUpdatePlugin.java:25) at nc.ui.dbcache.DBCacheUpdateService.run(DBCacheUpdateService.java:150) at java.lang.Thread.run(Thread.java:748) 17:12:41 [dbcache-update-thread] DEBUG - begin serialize 17:12:41 [dbcache-update-thread] DEBUG - end serialize | costtime=0ms 17:12:41 [dbcache-update-thread] DEBUG - begin write to net 17:12:41 [dbcache-update-thread] DEBUG - end write to net size=473 | costtime=0ms 17:12:41 [dbcache-update-thread] DEBUG - begin read from net 17:12:41 [dbcache-update-thread] DEBUG - end read from net size=357 | costtime=4ms 17:12:41 [dbcache-update-thread] DEBUG - begin deserialize 17:12:41 [dbcache-update-thread] DEBUG - end deserialize | costtime=0ms 17:12:41 [dbcache-update-thread] DEBUG - end nc.bs.dbcache.intf.IOutDateVersion.getOutDateVersions(java.lang.String) {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} | costtime=4ms 17:12:41 [dbcache-update-thread] DEBUG - no changes of memory version. 17:12:41 [dbcache-update-thread] DEBUG - return syncPointVersionTs is : 2025-10-14 17:08:33 17:12:41 [dbcache-update-thread] DEBUG - update vo cache, memory collect for cache of long time not used... 17:12:46 [Thread-71] DEBUG - callid=1760433166978-5776 17:12:46 [Thread-71] DEBUG - begin nc.bs.pub.IClusterFinder.getServerTime() {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} 17:12:46 [Thread-71] WARN - TraceRemoteCall java.lang.Exception at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:235) at nc.bs.framework.rmi.RemoteInvocationHandler.sendRequest(RemoteInvocationHandler.java:114) at nc.bs.framework.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:84) at com.sun.proxy.$Proxy69.getServerTime(Unknown Source) at nc.desktop.ui.console.logrecord.LogRecordPanel$LogRecordAction$1.run(LogRecordPanel.java:250) at java.lang.Thread.run(Thread.java:748) 17:12:46 [Thread-71] DEBUG - begin serialize 17:12:46 [Thread-71] DEBUG - end serialize | costtime=0ms 17:12:46 [Thread-71] DEBUG - begin write to net 17:12:46 [Thread-71] DEBUG - end write to net size=377 | costtime=0ms 17:12:46 [Thread-71] DEBUG - begin read from net 17:12:46 [Thread-71] DEBUG - end read from net size=213 | costtime=10ms 17:12:46 [Thread-71] DEBUG - begin deserialize 17:12:46 [Thread-71] DEBUG - end deserialize | costtime=0ms 17:12:46 [Thread-71] DEBUG - end nc.bs.pub.IClusterFinder.getServerTime() {target=http://127.0.0.1:32650/ServiceDispatcherServlet/default} | costtime=10ms 17:12:46 [Thread-71] ERROR - =============select /m from nclogs where ts>="2025-10-14 17:12:37" and ts<="2025-10-14 17:12:46" and userid="1001N11000000000446V" 17:12:46 [Thread-71] DEBUG - C:\Users\Administrator\NCCACHE\127.0.0.1_hphmnppmpa_32650 17:12:48 [Thread-71] DEBUG - request url=http://127.0.0.1:32650/service/monitorservlet 17:13:03 [Thread-15] DEBUG - ImLoginButton 开始获取离线消息 17:13:04 [Thread-15] ERROR - java.lang.NullPointerException 17:13:04 [Thread-15] ERROR - java.lang.NullPointerException 17:13:04 [Thread-15] DEBUG - ImLoginButton 获取离线消息数据为:0 17:13:04 [Thread-71] WARN - NetObjectInputStream lost token! 17:13:04 [Thread-71] DEBUG - 结果集个数 = 1 17:13:04 [Thread-71] DEBUG - 已完成100% 17:13:04 [Thread-71] DEBUG - 已完成,请到 C:\Users\Administrator\NCCACHE\127.0.0.1_hphmnppmpa_32650/recordlog 下将日志打包发送给技术人员 17:13:04 [Thread-72] DEBUG - isUsing()false,isLocked()false[ds=design,state=STOPED,using=false] 17:13:04 [Thread-72] DEBUG - "D:\yonyou\sp\nc65sp\ufjdk\jre\bin\java" -Xmx1024m -cp "D:\yonyou\sp\nc65sp\modules\riart\client\lib\uiriart_riasfbaseLevel-1.jar" nc.desktop.ui.console.logspr.LogAnalyze "C:\Users\Administrator\NCCACHE\127.0.0.1_hphmnppmpa_32650/recordlog" 455m 0m 0m WindowsServer2012R2 nc.bs.pub.IClusterFinder;nc.clienttask;nc.login.bs.IServerEnvironmentService.getServerTime;nc.bs.dbcache.intf.IDBCacheBS.getServerDBInfo;nc.bs.dbcache.intf.ICacheVersionBS.getOutDateVersions;nc.itf.smart.ISmartService.getGlobalConfig false "C:\Users\Administrator\NCCACHE\127.0.0.1_hphmnppmpa_32650\SPR_费用清单-查看审批意见20251014171304.html" 17:13:04 [Thread-72] DEBUG - generate SPR 17:13:04 [Thread-72] DEBUG - SPR文件保存在C:\Users\Administrator\NCCACHE\127.0.0.1_hphmnppmpa_32650\SPR_费用清单-查看审批意见20251014171304.html 17:13:06 [Thread-71] DEBUG - null 17:13:06 [Thread-71] DEBUG - null
最新发布
10-15
java.lang.NullPointerException at cif.projectmanager.dialogs.MultiProjectLauncherDialog.init(MultiProjectLauncherDialog.java:77) at cif.projectmanager.ProjectLauncherWrapper.getPathFromProjectLauncherDialog(ProjectLauncherWrapper.java:48) at cif.projectmanager.Installer$1$1.windowOpened(Installer.java:158) at java.awt.AWTEventMulticaster.windowOpened(AWTEventMulticaster.java:322) at java.awt.AWTEventMulticaster.windowOpened(AWTEventMulticaster.java:322) at java.awt.AWTEventMulticaster.windowOpened(AWTEventMulticaster.java:322) at java.awt.Window.processWindowEvent(Window.java:1824) at javax.swing.JFrame.processWindowEvent(JFrame.java:279) at java.awt.Window.processEvent(Window.java:1785) at java.awt.Component.dispatchEventImpl(Component.java:4413) at java.awt.Container.dispatchEventImpl(Container.java:2116) at java.awt.Window.dispatchEventImpl(Window.java:2440) at java.awt.Component.dispatchEvent(Component.java:4243) [catch] at java.awt.EventQueue.dispatchEvent(EventQueue.java:599) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:125) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160) at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
10-15
在matlab中用查找文档功能时出现这一串是怎么回事,应该如何解决Exception in thread "AWT-EventQueue-0": com.mathworks.util.event.EventListenerInvocationException: Error firing event: caused by: java.lang.NullPointerException at com.mathworks.mlservices.MLHelpServices.invoke(MLHelpServices.java:41) at com.mathworks.mde.desk.MLDesktop$HelpProductPageAction.actionPerformed(MLDesktop.java:3345) at com.mathworks.mwswing.ChildAction.actionPerformed(ChildAction.java:214) at com.mathworks.toolstrip.factory.TSFactory$ListListenerBridge.listItemSelected(TSFactory.java:1555) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.mathworks.util.event.EventListenerList$1.invoke(EventListenerList.java:72) at com.sun.proxy.$Proxy11.listItemSelected(Unknown Source) at com.mathworks.toolstrip.plaf.TSListCellRenderer.mouseReleased(TSListCellRenderer.java:521) at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:290) at java.awt.Component.processMouseEvent(Component.java:6539) at javax.swing.JComponent.processMouseEvent(JComponent.java:3324) at java.awt.Component.processEvent(Component.java:6304) at java.awt.Container.processEvent(Container.java:2239) at java.awt.Component.dispatchEventImpl(Component.java:4889) at java.awt.Container.dispatchEventImpl(Container.java:2297) at java.awt.Component.dispatchEvent(Component.java:4711) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4535) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476) at java.awt.Container.dispatchEventImpl(Container.java:2283) at java.awt.Window.dispatchEventImpl(Window.java:2746) at java.awt.Component.dispatchEvent(Component.java:4711) at ja
03-28
#-------------------------------------------------------------------------- # AMD Vivado v2024.2 (64-bit) # SW Build: 5239630 on Fri Nov 08 22:35:27 MST 2024 # IP Build: 5239520 on Sun Nov 10 16:12:51 MST 2024 # SharedData Build: 5239561 on Fri Nov 08 14:39:27 MST 2024 # Current time: Sun Jul 06 13:33:50 CST 2025 # Process ID (PID): 8364 # User: Mystic # OS: Windows 11 # Project: exp_01 # Part: xc7a200tfbg676-2 # # This report is an indication that an internal application error occurred. # This information is useful for debugging. Please open a case with AMD. # Technical Support with this file and a testcase attached. #-------------------------------------------------------------------------- java.lang.IllegalArgumentException: Comparison method violates its general contract! at java.base/java.util.ComparableTimSort.mergeHi(ComparableTimSort.java:870) at java.base/java.util.ComparableTimSort.mergeAt(ComparableTimSort.java:487) at java.base/java.util.ComparableTimSort.mergeForceCollapse(ComparableTimSort.java:426) at java.base/java.util.ComparableTimSort.sort(ComparableTimSort.java:222) at java.base/java.util.Arrays.sort(Arrays.java:1042) at java.desktop/sun.awt.shell.Win32ShellFolderManager2.get(Win32ShellFolderManager2.java:319) at java.desktop/sun.awt.shell.ShellFolder.get(ShellFolder.java:272) at java.desktop/javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.addItem(MetalFileChooserUI.java:1031) at java.desktop/javax.swing.plaf.metal.MetalFileChooserUI.doDirectoryChanged(MetalFileChooserUI.java:719) at java.desktop/javax.swing.plaf.metal.MetalFileChooserUI$5.propertyChange(MetalFileChooserUI.java:808) at java.desktop/java.beans.PropertyChangeSupport.fire(PropertyChangeSupport.java:343) at java.desktop/java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:335) at java.desktop/java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:268) at java.desktop/java.awt.Component.firePropertyChange(Component.java:8717) at java.desktop/javax.swing.JFileChooser.setCurrentDirectory(JFileChooser.java:610) at java.desktop/javax.swing.JFileChooser.<init>(JFileChooser.java:380) at java.desktop/javax.swing.JFileChooser.<init>(JFileChooser.java:325) at ui.dlg.c.a.b.<init>(SourceFile:95) at ui.dlg.c.a.a.gqa(SourceFile:95) at ui.dlg.c.a.a.sH(SourceFile:244) at ui.dlg.c.a.a.b(SourceFile:645) at ui.dlg.c.a.a.a(SourceFile:623) at ui.dlg.i.f.au.gtA(SourceFile:866) at ui.dlg.i.f.aG.a(SourceFile:701) at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:318) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:773) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:720) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:714) at java.base/java.security.AccessController.doPrivileged(AccessController.java:400) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:742) at ui.frmwork.a.d.dispatchEvent(SourceFile:38) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:117) at java.desktop/java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:191) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:236) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:234) at java.base/java.security.AccessController.doPrivileged(AccessController.java:319) at java.desktop/java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:234) at java.desktop/java.awt.Dialog.show(Dialog.java:1079) at com.jidesoft.dialog.StandardDialog.show(Unknown Source) at java.desktop/java.awt.Component.show(Component.java:1728) at java.desktop/java.awt.Component.setVisible(Component.java:1675) at java.desktop/java.awt.Window.setVisible(Window.java:1036) at java.desktop/java.awt.Dialog.setVisible(Dialog.java:1015) at ui.utils.j.l.i.setVisible(SourceFile:408) at ui.utils.j.l.i.a(SourceFile:370) at ui.views.c.f.run(SourceFile:48) at ui.frmwork.cmd.a.iMo(SourceFile:128) at ui.frmwork.cmd.d.iMA(SourceFile:66) at ui.i.i$b.actionPerformed(SourceFile:939) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1972) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2314) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:407) at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262) at java.desktop/javax.swing.AbstractButton.doClick(AbstractButton.java:374) at java.desktop/javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1029) at java.desktop/javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1073) at java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297) at java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297) at java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6621) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3398) at java.desktop/java.awt.Component.processEvent(Component.java:6386) at java.desktop/java.awt.Container.processEvent(Container.java:2266) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:4996) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2324) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4828) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4948) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4575) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4516) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2310) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2780) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4828) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:775) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:720) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:714) at java.base/java.security.AccessController.doPrivileged(AccessController.java:400) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:98) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:747) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:745) at java.base/java.security.AccessController.doPrivileged(AccessController.java:400) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:744) at ui.frmwork.a.d.dispatchEvent(SourceFile:38) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
07-07
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException: Cannot invoke "String.equals(Object)" because the return value of "manager.pojo.Users.getPassword()" is null at manager.frame.LoginPanel$2.mouseClicked(LoginPanel.java:139) at java.desktop/java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:278) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6624) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3404) at java.desktop/java.awt.Component.processEvent(Component.java:6386) at java.desktop/java.awt.Container.processEvent(Container.java:2266) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:4996) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2324) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4828) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4948) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4584) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4516) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2310) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2780) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4828) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:775) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:720) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:714) at java.base/java.security.AccessController.doPrivileged(AccessController.java:400) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:98) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:747) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:745) at java.base/java.security.AccessController.doPrivileged(AccessController.java:400) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:744) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
07-01
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值