- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的程序中的几个方法遇到了一些问题:我有一个方法,当用户单击 GUI 上的开始按钮时会调用该方法。此方法将接收当前通过网络发送/接收的所有网络流量,并向用户显示相关信息。用户可以通过单击停止按钮来停止调用该方法。该方法目前如下所示:
public static void retrieveFilteredPdu(){
/*Try/Catch block copied from 'receivePdu()' method in EspduReceiver.java on 07/05/2014
* Now edit it so that it will receive all PDUs, but only display the ones matching the filter values in the top JTextArea */
try{
/*Specify the socket to receive the data */
EspduReceiver.socket = new MulticastSocket(EspduSender.PORT);
EspduReceiver.address = InetAddress.getByName(EspduSender.DEFAULT_MULTICAST_GROUP);
EspduReceiver.socket.joinGroup(EspduReceiver.address);
//stopCapture = false;
/*Loop infinitely, receiving datagrams */
while(true){
/*First, set the value of the 'stopCapture' boolean to 'false', in case it has previously been set to true during the life of
* the program */
/*stopCapture = false; /*For some reason, if I do this here, clicking the 'Get site' button causes the program to start receiving
PDUs again, and you are not able to stop it without manually shutting down the program. Possibly because I am infinitely
setting the value of 'stopCapture' to false?*/
byte buffer[] = new byte[EspduReceiver.MAX_PDU_SIZE];
EspduReceiver.packet = new DatagramPacket(buffer, buffer.length);
EspduReceiver.socket.receive(EspduReceiver.packet);
Pdu pdu = EspduReceiver.pduFactory.createPdu(EspduReceiver.packet.getData()); /*Moved this line to the top of the class to declare as global variable (29/04/2014) */
if(pdu != null){
System.out.print("Got PDU of type: " + pdu.getClass().getName());
if(pdu instanceof EntityStatePdu){
EntityID eid = ((EntityStatePdu)pdu).getEntityID();
Vector3Double position = ((EntityStatePdu)pdu).getEntityLocation();
System.out.println(" EID:[" + eid.getSite() + ", " + eid.getApplication() + ", " + eid.getEntity() + "] ");
System.out.println("Location in DIS coordinates: [" + position.getX() + ", " + position.getY() + ", " + position.getZ() + "] ");
/*Add PDU to ArrayList of PDUs */
EspduReceiver.espdu.add(pdu);
/* System.out.println(" PDU added to arrayList. ");
System.out.println(espdu); /*This is printing out the actual DIS messages (i.e. edu.nps.moves.dis.EntityState...),
maybe try adding the 'eid.getSite()', etc to an ArrayList instead. Use Associative arrays/ map/ hashmap */
EspduReceiver.entitySite.add(eid.getSite());
System.out.println("Entity Site added to ArrayList from Filter.retrieveFilteredPdu() ");
EspduReceiver.entityApplication.add(eid.getApplication());
System.out.println("Entity Application added to ArrayLIst. ");
EspduReceiver.entity.add(eid.getEntity());
System.out.println("Entity ID added to ArrayList");
/*Check that everything is actually in the ArrayLists
for(int i : entity){ /*Substituted 'entity' with 'entitySite' and 'entityApplication'- values are all printed correctly.
System.out.println(i);
} */
/*07/05/2014
* Write a method that will only append the PDUs that match the filter values to the text area,
* call that method here. */
/*Now append each PDU to the text area */
Gui.displayFilteredOutput.append("\n");
Gui.displayFilteredOutput.append("EID: [" + eid.getSite() + ", " + eid.getApplication() + ", " + eid.getEntity() + "]. ");
Gui.displayFilteredOutput.append("Location in DIS coordinates: [" + position.getX() + ", " + position.getY() + ", " + position.getZ() + "] ");
/*Append every PDU that matches the filter criteria to the displayFilteredOutput JTextArea
Gui.displayFilteredOutput.append("\n");
Gui.displayFilteredOutput.append("EID: [" + eid.getSite() + ", " + eid.getApplication() + ", " + eid.getEntity() + "]. ");
Gui.displayFilteredOutput.append("Location in DIS coordinates: [" + position.getX() + ", " + position.getY() + ", " + position.getZ() + "] "); */
} else if(!(pdu instanceof EntityStatePdu)){
System.out.println("There are no PDUs currently being received.");
}
System.out.println();
}
Thread.sleep(1000);
/*Try adding a boolean to allow me to stop the capture by clicking 'stop' button- Look on stackoverflow */
boolean queryStopCapture = EspduReceiver.stopCapture;
if(queryStopCapture == true){
System.out.println("Break clause in 'queryStopCapture' if statement in EspduReceiver.java has been called. ");
break; /*Use a call to receivePdu() to populate the second JTextArea, but don't let it call a 'break' clause at all.
* Find some other way of adding a 'break' to the output displayed in the first JTextArea (01/05/2014)
* Maybe add this code to receivePdu() call in ActionListener instead of here.
*/
}
} /*end while */
} /*end try */
catch(Exception e){
System.out.println(e);
e.printStackTrace();
System.out.println("Error in retrieveFilteredPdu() method. ");
/*09/04/2014 @ 17:100
* If this exception gets called, presumably it either means that pdu is not an instance of EntityStatePdu, or
* that pdu does not actually hold a packet. */
}
}
我有另一种方法,理论上,它应该仅显示有关其属性与用户设置的某些值相匹配的网络流量的信息。当用户单击 GUI 上的“过滤器”按钮时,将调用此方法。该方法目前如下所示:
public static void filterPDUs(){
// if(EspduReceiver.startCapture == true){
/*If EspduReceiver.startCapture is true, then the program is already receiving PDUs, so now I need to set it to only display the ones that
* match the filter criteria. Do this by checking the PDU attributes against the filter values before printing- if they match, then print,
* if not, don't. */
if((EspduReceiver.startCapture == true) && (EspduReceiver.stopCapture == false)){
/*Get the size of the sitesToBeFiltered ArrayList, and store in a variable. Will need to update the variable with every iteration
* of the loop, because the ArrayList will keep growing as long as the capture is running. */
int sitesToBeFilteredSize = sitesToBeFiltered.size();
int matchingSitesIterator = 0;
/*First, check if site filter value matches the PDU's site, if it does, then check Application, if it matches again, then check ID.
* If at any point it doesn't match, exit the while loop. */
while(matchingSitesIterator < sitesToBeFilteredSize){
System.out.println("SitesToBeFiltered.size() = " + sitesToBeFilteredSize);
if(sitesToBeFiltered.get(matchingSitesIterator) == Filter.filter1Value){
if(applicationsToBeFiltered.get(matchingSitesIterator) == Filter.filter2Value){
if(IDsToBeFiltered.get(matchingSitesIterator) == Filter.filter3Value){
Gui.displayFilteredOutput.append("Matching PDU found: [" + sitesToBeFiltered.get(matchingSitesIterator) + ", " + applicationsToBeFiltered.get(matchingSitesIterator) + ", " + IDsToBeFiltered.get(matchingSitesIterator) + "] ");
} else {Gui.displayFilteredOutput.append("Sorry, there were no PDUs found with the specified ID value.");}
Gui.displayFilteredOutput.append("Need to display every PDU that had a matching Site & Application here. ");
}else {Gui.displayFilteredOutput.append("Sorry, there were no PDUs found with the specified Application value.");}
Gui.displayFilteredOutput.append("need to display every PDU that had a matching Site here. ");
}else {Gui.displayOutput.append("Sorry, there were no PDUs found with the specified Site value.");}
}
} else {
Gui.displayFilteredOutput.append("Do something if EspduReceiver.startCapture is not true, and EspduReceiver.stopCapture is not false");
}
// }else if(EspduReceiver.startCapture == false){
/*If EspduReceiver.startCapture is false, then the program is not receiving PDUs, so I now need to call the method that will receive PDUs,
* and display only the ones that match the filter criteria. */
// }
}
我遇到的问题是,出于某种原因,如果用户单击“过滤器”按钮仅显示具有匹配过滤条件的 PDU,则在单击“开始”(调用第一个方法)后,程序完全崩溃......(即它似乎停止执行它正在执行的功能,并且不会响应任何按钮甚至“关闭窗口”按钮的点击)
如果他们在单击“开始”和“停止”后单击“过滤”(即当第一个方法未运行时,则第二个方法将按预期执行其任务。
似乎出于某种原因,在第一个方法仍在运行时调用第二个方法会导致程序崩溃 - 我无法弄清楚这是为什么......任何人都可以指出这里出了什么问题吗?
编辑
我的主要方法中有以下代码:
public static void main(String[] args){
SwingUtilities.invokeLater(new Runnable(){
@Override
public void run(){
Gui gui = new Gui();
gui.setVisible(true);
}
});
}
最佳答案
正如其他人所说,您需要显示更多代码,但如果您使用 Swingworker 或其他线程来运行这些方法,那么这些方法必须是线程安全的或者它们需要同步
以防止它们的执行交错。如果您在事件分派(dispatch)线程外部直接访问 Swing 组件,那么 Swing 会让您感到烦恼,所以不要这样做(有一些某些文本组件有特殊异常(exception),但通常是禁止的)。如果您不确定,请在构造或使用 Swing 对象的每个语句之前添加 assert java.awt.EventQueue.isDispatchThread()
,并在运行时系统中启用断言。
关于java - 在一个方法调用仍在进行时调用第二个方法会导致程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23636426/
我喜欢 smartcase,也喜欢 * 和 # 搜索命令。但我更希望 * 和 # 搜索命令区分大小写,而/和 ?搜索命令遵循 smartcase 启发式。 是否有隐藏在某个地方我还没有找到的设置?我宁
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 10年前关闭。 Improve this qu
从以下网站,我找到了执行java AD身份验证的代码。 http://java2db.com/jndi-ldap-programming/solution-to-sslhandshakeexcepti
似乎 melt 会使用 id 列和堆叠的测量变量 reshape 您的数据框,然后通过转换让您执行聚合。 ddply,从 plyr 包看起来非常相似..你给它一个数据框,几个用于分组的列变量和一个聚合
我的问题是关于 memcached。 Facebook 使用 memcached 作为其结构化数据的缓存,以减少用户的延迟。他们在 Linux 上使用 UDP 优化了 memcached 的性能。 h
在 Camel route ,我正在使用 exec 组件通过 grep 进行 curl ,但使用 ${HOSTNAME} 的 grep 无法正常工作,下面是我的 Camel 路线。请在这方面寻求帮助。
我正在尝试执行相当复杂的查询,在其中我可以排除与特定条件集匹配的项目。这是一个 super 简化的模型来解释我的困境: class Thing(models.Model) user = mod
我正在尝试执行相当复杂的查询,我可以在其中排除符合特定条件集的项目。这里有一个 super 简化的模型来解释我的困境: class Thing(models.Model) user = mod
我发现了很多嵌入/内容项目的旧方法,并且我遵循了在这里找到的最新方法(我假设):https://blog.angular-university.io/angular-ng-content/ 我正在尝试
我正在寻找如何使用 fastify-nextjs 启动 fastify-cli 的建议 我曾尝试将代码简单地添加到建议的位置,但它不起作用。 'use strict' const path = req
我正在尝试将振幅 js 与 React 和 Gatsby 集成。做 gatsby developer 时一切看起来都不错,因为它发生在浏览器中,但是当我尝试 gatsby build 时,我收到以下错
我试图避免过度执行空值检查,但同时我想在需要使代码健壮的时候进行空值检查。但有时我觉得它开始变得如此防御,因为我没有实现 API。然后我避免了一些空检查,但是当我开始单元测试时,它开始总是等待运行时异
尝试进行包含一些 NOT 的 Kibana 搜索,但获得包含 NOT 的结果,因此猜测我的语法不正确: "chocolate" AND "milk" AND NOT "cow" AND NOT "tr
我正在使用开源代码共享包在 iOS 中进行 facebook 集成,但收到错误“FT_Load_Glyph failed: glyph 65535: error 6”。我在另一台 mac 机器上尝试了
我正在尝试估计一个标准的 tobit 模型,该模型被审查为零。 变量是 因变量 : 幸福 自变量 : 城市(芝加哥,纽约), 性别(男,女), 就业(0=失业,1=就业), 工作类型(失业,蓝色,白色
我有一个像这样的项目布局 样本/ 一种/ 源/ 主要的/ java / java 资源/ .jpg 乙/ 源/ 主要的/ java / B.java 资源/ B.jpg 构建.gradle 设置.gr
如何循环遍历数组中的多个属性以及如何使用map函数将数组中的多个属性显示到网页 import React, { Component } from 'react'; import './App.css'
我有一个 JavaScript 函数,它进行 AJAX 调用以返回一些数据,该调用是在选择列表更改事件上触发的。 我尝试了多种方法来在等待时显示加载程序,因为它当前暂停了选择列表,从客户的 Angul
可能以前问过,但找不到。 我正在用以下形式写很多语句: if (bar.getFoo() != null) { this.foo = bar.getFoo(); } 我想到了三元运算符,但我认
我有一个表单,在将其发送到 PHP 之前我正在执行一些验证 JavaScript,验证后的 JavaScript 函数会发布用户在 中输入的文本。页面底部的标签;然而,此消息显示短暂,然后消失...
我是一名优秀的程序员,十分优秀!