gpt4 book ai didi

java - 文件 - 退出不再在 Java GUI 中工作

转载 作者:行者123 更新时间:2023-12-01 17:37:03 26 4
gpt4 key购买 nike

在整理下面的 java gui 代码的过程中,我设法使文件/退出打开无法操作 - 我看不出有什么问题,请问有什么建议吗?

import java.awt.FlowLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import javax.swing.*;
import java.awt.*;


import java.awt.event.ActionListener;


public class BookGUI extends JFrame implements ActionListener

{

Book book = new Book("", "", 0, "", 0);
String title = "";
String author = "";
int year = 0;
String publisher = "";
double cost = 0;
double total = 0;
boolean goodInput = false;


public BookShelf bookShelf = new BookShelf();
public static final int WIDTH = 600;
public static final int HEIGHT = 90;

//Creates & displays a window of the class FlowLayoutDemo
public static void main(String[] args)
{
BookGUI gui = new BookGUI( );
gui.setVisible(true);
}

public void setTitle(String title)
{
this.title = title;
}

public void setAuthor(String author)
{
this.author = author;
}

public void setYear(int year)
{
this.year = year;
}
public void setPublisher(String publisher)
{
this.publisher = publisher;
}

public void setCost(double cost)
{
this.cost = cost;
}

public BookGUI( )
{
JFrame frame = this;

JMenuBar menubar = new JMenuBar();
frame.setJMenuBar(menubar);

frame.pack();
frame.setVisible(true);

JMenu fileMenu = new JMenu("File");
menubar.add(fileMenu);
JMenuItem quitItem = new JMenuItem("Quit");
fileMenu.add(quitItem);;

setSize(WIDTH, HEIGHT);
addWindowListener(new WindowDestroyer( ));
setTitle("GUI Assignment");
Container content = getContentPane( );

content.setLayout(new FlowLayout());

JButton button1 = new JButton("Add Book");
content.add(button1);
button1.addActionListener(this);

JButton button2 = new JButton("Hightest Price Paid");
content.add(button2);
button2.addActionListener(this);

JButton button3 = new JButton("Cost of BookShelf");
content.add(button3);
button3.addActionListener(this);

JButton button4 = new JButton("Size of BookShelf");
content.add(button4);
button4.addActionListener(this);

}

public void actionPerformed(ActionEvent e)
{

if (e.getActionCommand().equals("Add Book"))

{
title = JOptionPane.showInputDialog("Title");
author = JOptionPane.showInputDialog("Author");
publisher = JOptionPane.showInputDialog("Publisher");

do{
try {
cost = Double.parseDouble(JOptionPane.showInputDialog("Cost"));
book.setCost(cost);
goodInput = true;
}
catch (NumberFormatException nfe){
JOptionPane.showMessageDialog(this, "Numerical entry required. Please try again");
}
}while (!goodInput);


book.setTitle(title);
book.setAuthor(author);
book.setPublisher(publisher);
bookShelf.addBook(book);

String message = "The title of the book is :" + title +
"the Author of the Book is : " + author + " and it's published by " + publisher + "and it costs" + cost + "euro";
JOptionPane.showMessageDialog(null, message, "Book Details", JOptionPane.PLAIN_MESSAGE);
}
else if (e.getActionCommand().equals("Size of BookShelf")) {
int sizeOfBookShelf = bookShelf.sizeOfBookshelf();
String message = "The book shelf has " + sizeOfBookShelf + " book(s)";
JOptionPane.showMessageDialog(this, message);
}
else if (e.getActionCommand().equals("Cost of BookShelf"))
{
double costOfBookshelf = bookShelf.costOfBookShelf();
String message = "The book shelf value is " + total + costOfBookshelf + "Euro";
JOptionPane.showMessageDialog(this, message);
}

else
{
if (e.getActionCommand().equals("Hightest Price Paid"))
{
JOptionPane.showMessageDialog(this, "This facility is not currently available");
}
else
{
System.out.println("Error!");
}
//
}
//else
{
// Alows the class to quit.
//System.exit( 0 );
}




}
}

最佳答案

您忘记将操作监听器添加到 JMenuItem 中以退出。有点像这样:

quitItem.addActionListener(this);

然后在onActionPerformed中添加适当的代码。

关于java - 文件 - 退出不再在 Java GUI 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5261527/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com