- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,我明白我不应该有这个循环
while (pidInfo.contains(<processname>)){
pidInfo ="";
check<processname> =Runtime.getRuntime().exec(System.getenv("windir") +"\\system32\\"+"tasklist.exe");
input = new BufferedReader(new InputStreamReader(check<processname>.getInputStream()));
while ((line = input.readLine()) != null) {
pidInfo+=line;
}
input.close();
if (pidInfo.contains(<processname>)){
System.out.println("<processname> RUNNING");
}
else if (closeReason == 2){
System.out.println("<processname> STOPPED VIA PROG & USER");
status = "Not Running";
int ll = JOptionPane.showOptionDialog(null, "<processname>", "Error", JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE, null, null, null);
if (ll == JOptionPane.OK_OPTION){
//frame.setAlwaysOnTop(true);
frame.dispose();
}
}
// TODO: Other exit
}
基于其他问题但是
我不明白为什么当我从第一个框架启动这个框架(这是第二个框架)时它会卡住,但如果我单独启动第二个框架它会显示。
我希望从这个问题中得到两点
1:如何编写在后台运行循环的事物(threadworker?)。
2:为什么当我从第一帧启动它时它不会卡住(见下文)
提前谢谢您,这是第一个框架代码
if(pidInfo.contains(<processname>)) {
frame.setAlwaysOnTop(false);
status = "Running - In Game";
System.out.println("<processname>1st RUNNING");
int a = JOptionPane.showOptionDialog(null, "SUCCESS!", "Success", JOptionPane.DEFAULT_OPTION, JOptionPane.INFORMATION_MESSAGE, null, null, null);
if (a == JOptionPane.OK_OPTION) {
frame.dispose();
new 2ndFrameRunning();
}
}
2ndFrameRunning 是第二个框架,它已更改了其实际名称,这就是为什么它违反了 java 语法规则。
没有错误,只是“幻影”卡住。
示例代码
框架 1:命名为“menu.java”
/* Stack Overflow
* By Rabbitmcv
*/
package main;
// Imports
import java.awt.event.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.awt.*;
import javax.swing.*;
public class Menu implements ActionListener{
// Func
// Creates the JFrame
JFrame frame = new JFrame();
// Public Vars
boolean isGameRunning = false;
String status = "Not Running - In Main Menu";
// All code goes here
public Menu(){
// Vars
// Frame Vars
frame.setResizable(false);
frame.setSize(800, 600);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE);
frame.setAlwaysOnTop(true);
// JPanels
JPanel defaultPanel = new JPanel();
// DefaultPanel J...
JLabel title = new JLabel("FirstLabel");
JLabel risk = new JLabel("SecondLabel");
JLabel titleSub = new JLabel("StackOverflow");
JButton start2frame = new JButton("start2frame");
// DefaultPanel Button Code
start2frame.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0){
System.out.println("start2frame button pressed");
try{
String line;
String pidInfo ="";
Process checkcs =Runtime.getRuntime().exec(System.getenv("windir") +"\\system32\\"+"tasklist.exe");
BufferedReader input = new BufferedReader(new InputStreamReader(checkcs.getInputStream()));
while ((line = input.readLine()) != null) {
pidInfo+=line;
}
input.close();
if(pidInfo.contains("explorer.exe")) // The process name here has been changed from the real process for StackOverflow.
{
frame.setAlwaysOnTop(false);
status = "Running - In Game";
frame.setTitle("StackOverflow - "+status);
System.out.println("1st Game RUNNING");
// TODO: hackRunning
int a = JOptionPane.showOptionDialog(null, "SUCCESS", "Success", JOptionPane.DEFAULT_OPTION, JOptionPane.INFORMATION_MESSAGE, null, null, null);
if (a == JOptionPane.OK_OPTION){
frame.dispose();
new second();
}
}
else{
isGameRunning = false;
status = "Not Running - ERROR: Game NOT RUNNING";
frame.setTitle("StackOverflow - "+status);
System.out.println("game NOT RUNNING");
frame.setAlwaysOnTop(false);
int a = JOptionPane.showOptionDialog(null, "Game is not running", "Error", JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE, null, null, null);
if (a == JOptionPane.OK_OPTION){
frame.setAlwaysOnTop(true);
}
}
}
catch(Exception e){
System.out.println("Failed to check process");
e.printStackTrace();
}
}
});
// Set Layouts
defaultPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
defaultPanel.setLayout(new GridLayout(0, 1));
// Adds the J... to a Jpanel (IN ORDER FROM TOP TO BOTTOM)
defaultPanel.add(title);
defaultPanel.add(risk);
defaultPanel.add(titleSub);
defaultPanel.add(start2frame);
// Center Labels
title.setHorizontalAlignment(JLabel.CENTER);
risk.setHorizontalAlignment(JLabel.CENTER);
titleSub.setHorizontalAlignment(JLabel.CENTER);
// Add the JPanel to the JFrame
frame.add(defaultPanel);
// Vis
frame.revalidate();
frame.setTitle("StackOverflow - "+status);
frame.setVisible(true);
}
public static void main (String args[]){
new Menu();
}
@Override
public void actionPerformed(ActionEvent e) {
// AUTO: Because of actionlistener
}
}
框架 2 命名为“second.java”
/* StackOverflow - 2nd
* By Rabbitmcv
* If one runs this one sans the first program it shows non-frozen... but if you run it from menu.java it will freeze... probably something with threads.
*/
package main;
// Import
import java.awt.event.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.awt.*;
import javax.swing.*;
// This file has been renamed to 2.java
public class second implements ActionListener{
// Frame
JFrame frame= new JFrame();
// Panel
JPanel panel = new JPanel();
// Int
// closeReason: 0 = user, 1 = program, 2 = user init via prog (non-error)
int closeReason = 0;
// String
String status = "Running";
public second(){
// Set Settings
frame.setResizable(false);
frame.setSize(800, 600);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE);
frame.setAlwaysOnTop(true);
// Crap
frame.setTitle("StackOverflow- Running");
// Settings
// Add J...
JLabel label = new JLabel("Game "+status);
JButton closeGameButton = new JButton("Click here to close game");
// Adds the J... to a Jpanel (IN ORDER FROM TOP TO BOTTOM)
panel.add(label);
panel.add(closeGameButton);
// Button Func.
closeGameButton.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0){
try {
System.out.println("CloseGameButton Pressed");
Process killGame = Runtime.getRuntime().exec("taskkill /F /IM explorer.exe"); // My process has been changed to explorer.exe !!!! THIS WILL STOP WINDOWS EXPLORER. Feel free to change it to another process
closeReason = 2;
int exitCode = killGame.waitFor();
if (exitCode != 0){
throw new IOException("Failed to kill game; game not running");
}
frame.setTitle("StackOverflow - Not Running - Closed by user");
frame.setAlwaysOnTop(false);
int a = JOptionPane.showOptionDialog(null, "game has been closed", "game Closed", JOptionPane.DEFAULT_OPTION, JOptionPane.INFORMATION_MESSAGE, null, null, null);
if (a == JOptionPane.OK_OPTION){
frame.setAlwaysOnTop(true);
frame.setTitle("StackOverflow - Not Running - Closed by user");
}
} catch (Exception e) {
frame.setAlwaysOnTop(false);
System.out.println("Failed to kill game");
int a = JOptionPane.showOptionDialog(null, "game is not running", "Error", JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE, null, null, null);
if (a == JOptionPane.OK_OPTION){
frame.setAlwaysOnTop(true);
}
e.printStackTrace();
}
}
});
// END BUTTON FUNC
// Set layouts
panel.setBorder(BorderFactory.createEmptyBorder(10, 10, 30, 10));
panel.setLayout(new GridLayout(0, 1));
// Center Labels
label.setHorizontalAlignment(JLabel.CENTER);
// Add the JPanel to the JFrame
frame.add(panel);
// end
frame.revalidate();
System.out.println("far");
frame.setVisible(true);
try{
String line;
String pidInfo ="";
Process checkcs =Runtime.getRuntime().exec(System.getenv("windir") +"\\system32\\"+"tasklist.exe");
BufferedReader input = new BufferedReader(new InputStreamReader(checkcs.getInputStream()));
while ((line = input.readLine()) != null) {
pidInfo+=line;
}
input.close();
if (pidInfo.contains("explorer.exe")){ // Changed to explorer.exe
System.out.println("game running - pid");
status = "Running";
while (pidInfo.contains("explorer.exe")){ // Changed to explorer.exe
pidInfo ="";
checkcs =Runtime.getRuntime().exec(System.getenv("windir") +"\\system32\\"+"tasklist.exe");
input = new BufferedReader(new InputStreamReader(checkcs.getInputStream()));
while ((line = input.readLine()) != null) {
pidInfo+=line;
}
input.close();
if (pidInfo.contains("explorer.exe")){ // This checks if the process is still going on... changed to explorer.exe
System.out.println("game RUNNING");
}
else if (closeReason == 2){
System.out.println("game STOPPED VIA PROG & USER");
status = "Not Running";
int ll = JOptionPane.showOptionDialog(null, "game has stopped running", "Error", JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE, null, null, null);
if (ll == JOptionPane.OK_OPTION){
//frame.setAlwaysOnTop(true);
frame.dispose();
}
}
// TODO: Other exit
}
}
}
catch(Exception e){
System.out.println("Failed to check process");
e.printStackTrace();
}
}
public static void main (String args[]){
new second(); //StackOverflow
}
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
}
}
如果您不喜欢,您可以直接下载包含所有文件的 .zip
https://drive.google.com/open?id=0BzuCgrBgpuD1V3dKLUFfQU12UWc
最佳答案
正如我在评论中所说,当...
public static void main (String args[]){
new second(); //StackOverflow
}
被调用(即由JVM调用,因为您已经从命令行执行了该类),它在JVM的“主”线程中运行。
这意味着构造函数中的代码不会在事件调度线程的上下文中执行,因此不会阻塞 UI。
当您调用frame.setVisible
时,底层API将创建事件调度线程,并且所有基于UI的代码将在单独的线程上执行,而您在构造函数中启动的代码将在构造函数中执行“主”线程的上下文。
当调用 closeGameButton
的 ActionListener
时,无论您如何启动代码,都会阻塞事件调度线程,直到 killGame
完成.
您可以通过更改使第二个
以相同的方式执行
public static void main (String args[]){
new second(); //StackOverflow
}
至
public static void main (String args[]){
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new second(); //StackOverflow
}
});
}
这就是您应该如何启动所有 Swing 应用程序
我建议您首先查看 Concurrency in Swing和Worker Threads and SwingWorker
关于java - JFrame GUI 卡住 + Phantom,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43357272/
如果我使用 phantom.js 进行网页抓取,单击一些按钮和链接,那么终止程序最方便的方法是什么? http://phantomjs.org/api/webpage/method/close.htm
我正在尝试使用 phantom.js 编写一个网络蜘蛛。但是我收到了很多错误消息,我不知道为什么。我的代码如下所示: 使用 Nightmare.js: var Nightmare = require(
刚刚学习使用phantomjs,根据网上帖子自己手动改了一个延时截图功能,发现延时功能就是不能执行,最后一点点排查出了问题。 看代码: ?
所以我有一个带有 nextjs 的 React 应用程序,当用户使用 Phantom 钱包扩展程序并切换帐户时,我需要获取一个事件触发器。我在他们的文档中找不到任何相关内容:https://docs.
API 文档说 This reference type differs from the others in that it isn't meant to be used to access the
我正在尝试使用Phantom JS登录一个站点,以便可以保持供应商价格的最高水平。 输入了用户名和密码,但没有按下登录按钮。 如果登录按钮是而不是,则.click()应该可以工作,但是我找不到按的方法
我正在运行 AngularJS 的设置AJAX 应用程序,并使用 PhantomJS和 Angular-seo库,以便为爬虫提供实际标记而不是 JS 代码。 不幸的是,我收到一条错误消息: 此附件的隐
我有一个 Phantom JS 脚本,用于监视一些外部页面。基本上它只是从这个页面获取状态,如下所示( typescript 代码): const status: string = await pag
我设法使 SVN 存储库陷入不良状态。我已经移动了一个目录,但现在无法将其提交到新位置。 就svn status而言,目录未知(目录名称为type)。 $ svn status? type
我在命令行中输入以下命令:tf工作区,它告诉我计算机上没有工作区。然后我在服务器上尝试相同的命令,什么也没有。因此,我进入 Visual Studio 2010 并创建一个新工作区,并尝试将 TFS
这个信息图有更多问题。好像有幻影出现在轮播的末尾。有谁知道这是怎么出现的? http://weaver-wp.weavertest.com/radiation-infographic/ 干杯,戴夫 最
我有一个 UWP 应用程序,该应用程序给我幻象的 XAML 编译器错误。 在此示例中,我在 Win2D 控件上遇到错误: 控件的命名空间是: xmlns:win2D="usin
我正在使用 Jasmine 对 Angular 应用程序进行单元测试。在 Chrome 上一切正常,直到我开始使用 PhantomJs 进行 headless 浏览器测试或在控制台上测试输出。 2天后
我正在尝试使用 Phantom.JS 在此页面上执行一些页面自动化:https://reserve.apple.com/GB/en_GB/reserve/iPhone 我知道如何使用 document
这是 Scala“Phantom Type”演示的示例,显示 compile-time checking of Rocket Launch configuration : object RocketM
我似乎在 Postgres 中有某种幻影表。 假设我执行以下操作: select * from information_schema.tables where table_schema = 'publ
是否可以使用 Phantom.js 获取警告框内的文本? var page = require("webpage").create() , assert = require("assert"); pa
我正在尝试创建一个列表,其中每一行都有一个指示该行的数字(例如,“1”代表第一行,“2”代表第二行,等等),一个或多个图标(例如,删除、编辑等)紧接在号码的右侧,然后是后面的文本 block 。参见
请帮助我在我的 Windows 8 PC 上配置 phantom.js。 我是从http://phantomjs.org/download.html下载的 它给了我一个 zip 文件,其中有 1 个
我对 PhantomJS 和一般编程都很陌生,所以请耐心等待。我正在尝试编写代码来登录我的亚马逊帐户,并将送货地址添加到我的地址簿中。我正在使用的代码在这里: var steps=[]; var lo
我是一名优秀的程序员,十分优秀!