- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些为我的程序创建的 JFrame GUI;一个带有菜单并显示output.txt 文件,另一个用于输入信息。
在程序完全运行完毕之前,我无法与它们交互或“单击”它们。
我以为是 JOption Pane (是/否)优先于 JFrame,但是,我注释掉了程序中的所有 JOption Pane 来测试这一点,您仍然需要等到程序完全完成才能访问 JFrame。
public class TheList extends JPanel {
public TheList(){
}
public static void List(){
ArrayList<Food> didntBuy = new ArrayList<Food>();
ArrayList<Food> arrayList = new ArrayList<Food>();// creating an ArrayList for Food objects.
ArrayList<Food> sortLow = new ArrayList<Food>();// creating ArrayLists for high, medium, and low priorities.
ArrayList<Food> sortMed = new ArrayList<Food>();
ArrayList<Food> sortHigh = new ArrayList<Food>();
final Scanner keyboard = new Scanner(System.in);
//System.out.println("\nEnter your name");
String yourName=JOptionPane.showInputDialog("\nEnter your name for the list");
JOptionPane.showMessageDialog(null, "\nYou entered: "+ yourName);
boolean checkLetterFirstName;
checkLetterFirstName = CheckInput.CheckForNumber(yourName);// Used this class from another student.
if(checkLetterFirstName == true)
{ JOptionPane.showMessageDialog(null, "I'm sorry but no numbers or spaces can be in your first name.", yourName, JOptionPane.ERROR_MESSAGE);
//System.out.println("Enter you name");
// yourName=keyboard.nextLine();
yourName=JOptionPane.showInputDialog("\nEnter your name");
checkLetterFirstName = CheckInput.CheckForNumber(yourName);}
try{
//System.out.println("Enter funds");
//Food.currentCash=keyboard.nextDouble();
String fn=JOptionPane.showInputDialog("Enter funds for the list");
Food.currentCash= Double.parseDouble(fn);// converting String to a Double.
if(Food.getCurrentCash()<0)
throw new Exception("Exception: no negative numbers");
}
catch (Exception e){
JOptionPane.showMessageDialog(null, (e.getMessage()), null, JOptionPane.ERROR_MESSAGE);
JOptionPane.showMessageDialog(null, "Enter postive numbers only");
String fn=JOptionPane.showInputDialog("Enter funds for the list");
Food.currentCash= Double.parseDouble(fn);
}
Food.currentCash1=Food.currentCash;
NumberFormat formatter=NumberFormat.getCurrencyInstance();
System.out.println("Current Cash");
System.out.println(formatter.format(Food.currentCash));// used a currency formatter to covert to dollars.
final Scanner keyboard6 = new Scanner(System.in);
for (int i = 0; i < 50; i++) {
//An abstract class cannot be instantiated
int answer=
JOptionPane.showConfirmDialog(null, "Do you want to add a new apple(s) object to list?", "Click Yes or No:", JOptionPane.YES_NO_OPTION);
if (answer== JOptionPane.YES_OPTION)
{
JFrame frame = new JFrame(); // creating a new JFrame object called "frame".
Container pane = null;
// SpringLayout layout = new SpringLayout();
BoxLayout layout= new BoxLayout(pane, BoxLayout.Y_AXIS);
JTextArea text0 =new JTextArea("Do you want to add an apple(s) to list?"); //creating a new TextArea object called "text".
frame.setSize(600, 600); //setting width and hight of window frame.
JButton yes = new JButton("Yes");
JButton no = new JButton("No");
JButton enter= new JButton("Enter");
JButton enter2= new JButton("Enter");
JButton enter3= new JButton("Enter");
JButton enter4= new JButton("Enter");
yes.setAlignmentX(Component.CENTER_ALIGNMENT);
no.setAlignmentX(Component.CENTER_ALIGNMENT);
final JPanel panel = new JPanel(); // creating 4 new panels
final JPanel panel2 = new JPanel();
final JPanel panel3 = new JPanel();
final JPanel panel4 = new JPanel();
JLabel label = new JLabel("What kind of apple?"); // creating 4 labels per panel.
JLabel label2 = new JLabel("Enter priority or -1 to exit program.");
JLabel label3 = new JLabel ("Enter price you want to pay.");
JLabel label4 = new JLabel ("Enter quanity.");
JTextField text = new JTextField(10);
JTextField text2 = new JTextField(10);
JTextField text3 = new JTextField(10);
JTextField text4 = new JTextField(10);
panel.add(label);// adding labels to the panel
panel2.add(label2);
panel3.add(label3);
panel4.add(label4);
panel.add(text); // adding text fields to each panel to enter information.
panel2.add(text2);
panel3.add(text3);
panel4.add(text4);
panel.add(enter);
panel2.add(enter2);
panel3.add(enter3);
panel4.add(enter4);
panel.setAlignmentX(Component.CENTER_ALIGNMENT);
panel2.setAlignmentX(Component.CENTER_ALIGNMENT);
panel3.setAlignmentX(Component.CENTER_ALIGNMENT);
panel4.setAlignmentX(Component.CENTER_ALIGNMENT);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);// ends program if closed.
frame.setAlwaysOnTop(true); // on top of other windows.
frame.setTitle("Apple");
//Image img = ImageIO.read(new File("C:\\Users\\joey zasa\\workspace\\homework4\\src\\homework4\\apple-full2.jpg"));
frame.add(text0);
frame.add(yes);
frame.add(no);
frame.add(panel);
frame.getContentPane().add(panel2);
frame.getContentPane().add(panel3);
frame.getContentPane().add(panel4);
addComponentsToPane(frame.getContentPane());
final Fruit appleObject =new apple();
yes.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
panel.setVisible(true);
panel2.setVisible(true);
panel3.setVisible(true);
panel4.setVisible(true);
}
});
no.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
panel.setVisible(false);
panel2.setVisible(false);
panel3.setVisible(false);
panel4.setVisible(false);
}
});
enter.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
appleObject.setName(keyboard6.nextLine());
}
});
enter2.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
appleObject.setPriority(keyboard.nextInt());
}
});
enter3.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
appleObject.setPrice(keyboard.nextDouble());
}
});
enter3.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
try{
System.out.println("Enter quanity");
appleObject.setQuanity(keyboard.nextInt());
if(appleObject.getQuanity()<0)
throw new negativeException();
}
catch (negativeException x) {
System.out.println(x.getMessage());
System.out.println("Enter quanity again");
appleObject.setQuanity(keyboard.nextInt());
}
}
});
frame.pack();
frame.setVisible(true);// setting the visibility of the frame to true.
for (int z=0; z<appleObject.getQuanity(); z++){
arrayList.add (appleObject);
i++;
}}
if( appleObject.getPriority()==1||appleObject.getPriority()==2){
sortHigh.add(appleObject);}// adding only one instance of an Object to one of 3 Arraylists
if( appleObject.getPriority()==3||appleObject.getPriority()==4){
sortMed.add(appleObject);}
if( appleObject.getPriority()==5){
sortLow.add(appleObject);}
}
System.out.println("\n"+yourName+"'s list:");
int listSize=arrayList.size();
for(int position=0; position <listSize; position++){
System.out.println(arrayList.get(position));
}
int y = arrayList.size();
System.out.println("\nSize of list: "+y+"\n" );
// Sorting with low, medium,100 high, needs. Priorities 1-2=high, 3-4=medium, 5= low.
System.out.println("\nHigh priority items :\n");
int listHigh=sortHigh.size();
for(int position=0; position <listHigh; position++){
System.out.println(sortHigh.get(position));
}
System.out.println("\nMedium priority items :\n");
int listMed=sortMed.size();
for(int position=0; position <listMed; position++){
System.out.println(sortMed.get(position));
}
System.out.println("\nLow priority items :\n");
int listLow=sortLow.size();
for(int position=0; position <listLow; position++){
System.out.println(sortLow.get(position));
}
System.out.println("\n\nCash left for virtual list: ");
System.out.println(formatter.format(Food.currentCash));
System.out.println("\n\nCash left after real world prices: ");
System.out.println(formatter.format(Food.currentCash1));
String nameofFile="out.txt";
PrintWriter outputStream=null;
try{
outputStream=new PrintWriter(nameofFile);
}
catch(FileNotFoundException e)
{
System.out.println("Error opening file");
System.exit(0);
}
{
outputStream.println("\n"+yourName+"'s list of purchased Items:");
int listSize4=arrayList.size();
for(int position=0; position <listSize4; position++){
outputStream.println(arrayList.get(position));
}
outputStream.println("\nHigh priority items :\n");
int listHigh1=sortHigh.size();
for(int position=0; position <listHigh; position++){
outputStream.println(sortHigh.get(position));
}
outputStream.println("\nMedium priority items :\n");
int listMed1=sortMed.size();
for(int position=0; position <listMed1; position++){
outputStream.println(sortMed.get(position));
}
outputStream.println("\nLow priority items :\n");
int listLow1=sortLow.size();
for(int position=0; position <listLow; position++){
outputStream.println(sortLow.get(position));
}
outputStream.println("\nItems you did not buy, but you may need: \n");
int listDidntBuy=didntBuy.size();
for(int position=0; position <listDidntBuy; position++){
outputStream.println(didntBuy.get(position));
}
outputStream.close();
}
}
}
private static void addComponentsToPane(Container pane) {
{
pane.setLayout(new BoxLayout(pane, BoxLayout.Y_AXIS));
}
}
}
我的程序类太多了,给您提供一个小程序,抱歉。这是我正在其中创建 GUI 之一的类。它是一个名为“apple”的小型 GUI。图中apple后面的GUI来自另一个类,在Main中打开。我还编辑了其余的“杂货列表对象”,仅包括“苹果”。
最佳答案
您似乎正在使用某种长时间运行的进程或无限循环来阻塞事件调度线程
看看Concurrency in Swing了解更多详情。
关于JAVA硬件。在程序完成之前无法与创建的 JFrame GUI 交互,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20509148/
我正在尝试将 JFrame (bar) 添加到 JFrame (foo),这会强制 bar 在之前关闭foo 可以再次集成。 例如,在我可以再次编写代码之前,必须关闭“About Eclipse”框架
我有一个名为 User 的 JFrame,在其中声明一个名为 id 的变量,并根据某些条件将其设置为特定值。 我需要在称为输出的第二个 JFrame 中使用此变量。 这是我的代码 class Inpu
我有这个问题:我有一个 ArrayList,其中包含一些我想在特定框架中使用的项目,问题是数组列表通过在主类中初始化而变满我的项目。在本类(class)中,我还启动了与其他框架链接的起始框架(登录框架
如何在隐藏一个 Swing 程序的同时将一个 javax.Swing 程序移动到另一个 Swing 程序,以及如何制作可滚动的 JFrame。请帮助我。 最佳答案 在这里你可以找到一个非常good e
所以基本上我有一个 2D 游戏(基本上是过去的仿制品的链接),当你按 e 键时,库存会打开,关闭时会隐藏。问题是,每次我按 e 键时,它都会打开一个包含所有初始值的新库存,我希望它在初始值之后打开一个
我有一个 JFrame(1,主框架),它延续了 JPanel 和 JTable 以及数据。用户可以编辑数据。因此,一个新的 JFrame (2) 打开,用户可以输入新数据。如果他们在第二帧中单击“确定
我有一个新的netbeans“Java应用程序”项目,我试图从主JFrame添加第二个JFrame,用户可以从中加载文件。 所以我有主要的 JFrame main 方法 public static v
我的程序应该在单击按钮时启动第二个 JFrame 并打印一条语句,但它总是启动三个 JFrame 并打印三个语句。我只需要它来打印出一份声明并启动一个 Jframe。这是代码: import java
我目前已经构建了一个使用多个框架的应用程序。但如果我能在 1 帧中使用所有我用过的帧,那就太好了。如下图所示。 因此,如果您按左侧按钮“Speler Overzicht”,它将在右侧面板中向用户显示,
我目前有一个按钮,单击该按钮时,会执行一种方法,该方法创建一个带有加载多个图像的面板的 jframe。如果多次单击此按钮,图像将继续添加到加载到 jframe 上的现有图像上。我应该使用什么代码,以便
为什么无法将JFrame添加到JFrame中?它只是将一个组件添加到容器中。 Java 如何禁止我这样做?是的,我知道这样做没有意义,但我的问题的重点是了解 Swing 机制 - 它在幕后是如何工作的
我创建了一个生成 StartUpWindow 对象的类。其中一个 JButton 组件关闭 JFrame,然后调用一种新类型的框架进行实例化,AdminMainWindow。但是,当 AdminMai
我试图在不显示 JFrame 本身的情况下将 JFrame 渲染为图像(类似于 this 问题所问的内容)。我试过使用这段代码: private static BufferedImage getScr
我正在使用 XFCE 4 桌面的 Debian 8 上编译并运行以下代码。 import javax.swing.JFrame; import javax.swing.JComponent; impo
我有 14 个 JFrame 类和一个 JFrame 类,其中包含一个充当日历的 JTable。我希望当用户从 JTable 日历中选择日期时,更改 14 个 JFrame 类中任何一个文本字段或任何
我有 3 个扩展 JFrame 的对象让我们调用他们 FrameA FrameB FrameC . FrameA是我的主应用程序窗口。来自 FrameA的构造函数如果应用程序未注册我创建 FrameB
我试图简单地创建四个 jtextfields 和一个 jbutton。按下按钮后,我希望输入到 jtextfields 的文本作为参数(p、var、s、f)传递到另一个窗口,该窗口使用给定的参数显示数
这个问题已经有答案了: Close one JFrame without closing another? (2 个回答) 已关闭 6 年前。 我制作了一个程序,其中存在三个jframe。但问题是,当
我正在用 java 构建一个桌面学生管理应用程序。所以我需要关闭当前的 JFRAME,同时另一个 JFRAME 可见(关闭新的 jframe 后,旧的 jframe 应该可见)。你能帮我一下吗? 最佳
我正在开发的应用程序包含一个主 JFrame,用户最终可能会从中打开另一个补充框架。我正在尝试实现应用程序的这种行为,其中一旦主框架最小化,补充框架就会最小化(图标化)。 我正在考虑重写主框架的 se
我是一名优秀的程序员,十分优秀!