- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用处理图书存储系统的 GUI 应用程序完成一项学校作业,该应用程序应该显示图书存储中的书籍列表,但当我启动它时没有任何显示。下面我将发布我正在使用的代码。另外,我只能在 TODO 标记区域中更改或添加新代码。根据我的理解,书籍数组存储在 jlist 包含的 bookarraymodel 中,并且位于添加到内容 Pane 的 jscrollpane 中,因此应该显示它。
这里我们有图书类:
/**
* Book
*/
public class Book {
public enum BookCategory {
Programming, Database, Design
}
private String title;
private String authors;
private int pages;
private BookCategory category;
public Book(String title, String authors, int pages, BookCategory category) {
this.title = title;
this.authors = authors;
this.pages = pages;
this.category = category;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAuthors() {
return authors;
}
public void setAuthors(String authors) {
this.authors = authors;
}
public int getPages() {
return pages;
}
public void setPages(int pages) {
this.pages = pages;
}
public BookCategory getCategory() {
return category;
}
public void setCategory(BookCategory category) {
this.category = category;
}
}
接下来是用于帮助管理书籍数组的 bookarraymodel:
import javax.swing.AbstractListModel;
/**
* A book array model used by {@link javax.swing.JList}.
*/
public class BookArrayModel extends AbstractListModel<String> {
private Book[] bookArray;
public BookArrayModel(Book[] bookArray) {
this.bookArray = bookArray;
}
public void setBookArray(Book[] bookArray) {
this.bookArray = bookArray;
}
@Override
public int getSize() {
return bookArray.length;
}
@Override
public String getElementAt(int index) {
return bookArray[index].getTitle();
}
}
然后我们有 bookstorage 类,它存储了书籍数组以及帮助管理它的各种方法:
/**
* A collection of {@link Book}.
*/
public class BookStorage {
private Book[] books = new Book[100];
public BookStorage() {
}
/**
* Initializes the book storage with some arbitrary book objects.
*/
public void initBooks() {
// TODO Add your code here...
books[0] = new Book("Testing book1", "Jamal", 420, Book.BookCategory.Programming );
books[1] = new Book("Effective Java", "Joshua Bloch",344,Book.BookCategory.Design);
books[2]= new Book("Clean Code", "Robert C. Martin",780, Book.BookCategory.Programming);
books[3] = new Book("Java Concurrency in Practice", "Brian Goetz", 256, Book.BookCategory.Database);
books[4] = new Book("Head First Design Patterns", "Kathy Sierra", 588, Book.BookCategory.Database);
books[5]= new Book("Spring in Action", "Criag Walls", 533,Book.BookCategory.Programming);
books[6] = new Book("Test Driven", "Lasse Koskela",434,Book.BookCategory.Design);
books[7] = new Book("The Definitive Guide to Java Performance", "Scott Oaks",567,Book.BookCategory.Database );
books[8] = new Book("Head First Java", "Bert Bates",923,Book.BookCategory.Design );
books[9] = new Book("Head First Object-Oriented Analysis and Design", "David West",844,Book.BookCategory.Programming);
books[10] = new Book("Java: A Beginner's Guide", "Herbert Schildt", 255,Book.BookCategory.Programming);
}
/**
* Uses the given book to update the existing book with the same title.
*/
public void update(Book book) {
// TODO Add your code here...
}
/**
* Removes a book by title.
*/
public void remove(String bookTitle) {
// TODO Add your code here...
}
/**
* Adds a new book.
*/
public void add(Book book) {
// TODO Add your code here
}
/**
* Gets a book by title.
*/
public Book getByTitle(String title) {
// TODO Add your code here...
}
/**
* Searches for books whose title contains the keyword and returns them ordered by titles (in alphabet order).
*/
public Book[] titleSearch(String keyword) {
// TODO Add your code here...
}
/**
* Returns all books sorted by their titles (in alphabet order).
*/
public Book[] getAll() {
// TODO Add your code here...
sortByTitle(books);
return books;
}
/**
* Sorts an array of books by their titles in alphabet order.
*/
private Book[] sortByTitle(Book[] bookArray) {
// TODO Add your code here...
Book temp;
for(int i = 1; i < bookArray.length; i++)
{
for(int j = i; j > 0; j--)
{
if(bookArray[j] == null)
{
break;
}
else if(bookArray[j].getTitle().charAt(0) <bookArray[j-1].getTitle().charAt(0))
{
temp = bookArray[j];
bookArray[j] = bookArray[j-1];
bookArray[j=1] = temp;
}
}
}
return bookArray;
}
}
最后是启动应用程序的图书列表窗口,它设置 GUI:
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
import java.awt.*;
/**
* BookListWindow
*/
public class BookListWindow extends JFrame implements ActionListener {
//======== Top ========
private JPanel topPanel;
private JTextField searchTextField;
private JButton searchButton;
private JButton clearButton;
//======== Middle ========
private JScrollPane titleListScrollPane;
private JList<String> bookTitleList;
//======== Bottom ========
private JPanel bottomPanel;
private JButton addButton;
private JButton detailButton;
private JButton removeButton;
//======== Data ========
private BookStorage bookStorage;
private BookArrayModel bookListModel;
public BookListWindow(BookStorage bookStorage) {
this.bookStorage = bookStorage;
bookListModel = new BookArrayModel(bookStorage.getAll());
initComponents();
}
// / * Clears the search results and list all the books.
//*/
public void resetToAll() {
bookListModel.setBookArray(bookStorage.getAll());
searchTextField.setText("");
bookTitleList.updateUI();
}
/**
* Returns the book storage.
*/
public BookStorage getBookStorage() {
return bookStorage;
}
/**
* Initializes the components.
*/
private void initComponents() {
Container contentPane = getContentPane();
this.setTitle("Book Management");
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
//======== Top ========
topPanel = new JPanel();
searchTextField = new JTextField();
searchButton = new JButton("SEARCH");
clearButton = new JButton("CLEAR");
searchButton.addActionListener(this);
clearButton.addActionListener(this);
{
// Set the layout for topPanel and add the buttons.
// TODO Add your code here...
topPanel.setLayout(new GridLayout(1,3));
topPanel.add(searchTextField);
topPanel.add(searchButton);
topPanel.add(clearButton);
}
//======== Middle ========
titleListScrollPane = new JScrollPane();
bookTitleList = new JList<>();
{
// Configure the bookTitleList 1) Use single selection
//TODO Add your code here...
bookTitleList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
}
titleListScrollPane.setViewportView(bookTitleList);
//======== Bottom ========
bottomPanel = new JPanel();
addButton = new JButton("ADD");
detailButton = new JButton("DETAIL");
removeButton = new JButton("REMOVE");
addButton.addActionListener(this);
detailButton.addActionListener(this);
removeButton.addActionListener(this);
{
// Set the layout for bottomPanel and add the buttons.
// TODO Add your code here...
bottomPanel.setLayout(new GridLayout(1,3));
bottomPanel.add(addButton);
bottomPanel.add(detailButton);
bottomPanel.add(removeButton);
}
contentPane.setLayout(new BorderLayout());
{
// Add the components to contentPane with proper layout options.
// TODO Add your code here...
contentPane.add(topPanel, BorderLayout.NORTH);
contentPane.add(titleListScrollPane, BorderLayout.CENTER);
contentPane.add(bottomPanel, BorderLayout.SOUTH);
}
pack();
setLocationRelativeTo(getOwner());
}
@Override
public void actionPerformed(ActionEvent e) {
if (e.getSource() == searchButton) {
// Action for the SEARCH button
// TODO Add your code here...
} else if (e.getSource() == clearButton) {
// Action for the CLEAR button
// TODO Add your code here...
resetToAll();
} else if (e.getSource() == addButton) {
// Action for the ADD button
// TODO Add your code here...
} else if (e.getSource() == detailButton) {
// Action for the DETAIL button
// TODO Add your code here...
} else if (e.getSource() == removeButton) {
// Action for the REMOVE button
if (!bookTitleList.isSelectionEmpty()) {
bookStorage.remove(bookTitleList.getSelectedValue());
JOptionPane.showMessageDialog(this, "Remove Successful!");
resetToAll();
}
}
}
public static void main(String[] args) {
BookStorage bookStore = new BookStorage();
bookStore.initBooks();
BookListWindow bookListWindow = new BookListWindow(bookStore);
bookListWindow.setVisible(true);
}
}
最佳答案
唯一无法显示 JFrame
的问题是该代码无法编译。如果您实现 BookStorage
的 getByTitle
和 titleSearch
方法(返回有用的内容),那么代码将编译并且框架将显示(我测试过)。现在剩下的就是实现赋值的所有方法。
关于java - 如何使用 JScrollpane 列表获取 Jlist 以显示在 JFrame 上?没有出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58898300/
我有一个 JScrollPane,它的内容 Pane 有一个 JPanel。我向该 JPanel 添加了较小的 JPanel,正如预期的那样,如果我添加太多 JPanel,将会出现一个垂直滚动条。 问
我正在尝试在另一个 JScrollPane 中添加一个 JScrollPane。内部 JScrollPane 只会水平滚动,外部只会垂直滚动。 在这张图中,您可以看到添加 mainPanel 时水平滚
我正在尝试创建一个带有滚动条的容器,并且容器内部有两个内部面板。顶部内面板内还有另一个 JScrollPane。 但目前我遇到的问题是,当我的顶部内面板太长(宽度)时,顶部内面板内的滚动条被禁用,我只
你们能让我知道禁用水平滚动条的最佳方法是什么吗? 我有 宽度:100% 和 高度:280px 的 div。当我们有很长的连续文本(没有任何空格)时,我们会显示一个水平滚动条。 顺便说一句,我正在使用
我注意到这个问题主要出现在 OS 10.5.8 上的 Firefox 3.6.6 上,Safari 上偶尔也会出现这种情况(准备好惊讶的表情 - IE 实际上每次都工作正常 - 什么?!)。 我的网址
所以我有一堆JTable。每个JTable 都位于JScrollPane 内。然后,我将每个 JScrollPane 添加到 JPanel 中。然后,我将此 JPanel 添加到 JScrollPan
我在 JScrollPane 上放置了多个 JPanel。现在我有了它,所以如果你的鼠标在框架之外,那么它就不会拖动 JPanels。 当我在一个方向上移动组件时,我需要让它滚动。 (例如,如果我
有什么区别 JScrollPane.getViewportBorderBounds() and JScrollPane.getViewport() and JscrollPane.getVisible
此应用程序适用于触摸屏。我只需要仅当用户触摸 JScrollPane 区域时 JScrollPane 的滚动条可见。 我是 GUI 和 swing 的新手。这会很有帮助,我不明白是什么,或者如果在其他
出于布局目的,我需要在滚动内容底部和容器底部之间放置 15px 的空间:div class="scroll-pane" . 造型容器 .scroll-pane { padding-bottom:15p
我需要一个可以显示很多图像的程序,并且我需要一个可以滚动的窗口。我阅读了文档并在论坛上进行了搜索,但仍然没有成功。我尝试使用 JScrollPane 和 JFrame,如下所示。 JScrollPan
我今天遇到了这个新事物,但我不知道为什么。例如,当我想在面板中显示某些内容时,我只需将其添加到面板即可;但为什么我不能直接添加表格到滚动 Pane ,为什么我必须调用 setviewportview(
我今天遇到了这个新事物,我不知道为什么。例如,当我想在面板中显示某些内容时,我只需将其添加到面板即可;但是为什么我不能直接添加表格到滚动 Pane ,为什么我必须调用 setviewportview(
我一直在尝试缩小 JScrollPane 的内容宽度,例如。我已将 HorizontalScrollBarPolicy 设置为 NEVER,但这最终导致没有 ScrollBar 出现并且内容不再显
所以,在下面的代码中,我在左侧有一个 JTextArea。右上角的 JScrollPane 看起来不错。使用相同的代码,我还在右下侧添加了一个 JScrollPane,但是尽管代码相同,但保存了首选大
我在 div 上使用 JScrollPane 来滚动它。 div 包含一个自写的 javascript 代码,它从我的 tumblr 提要中获取最后几篇文章。但是,即使滚动 Pane 显示正常,但由于
请看下面的代码块 import java.awt.Color; import java.awt.Dimension; import javax.swing.JFrame; import javax.s
我在 Swing 中制作了一个简单的 GUI,其中在 JScrollPane 内、JSPlitPane 内、JPanel 内、....在 JFrame 内有一个大 JPanel(显示大 Buffere
我有一个带滚动条的 JPanel,我想向它添加很多 JLabel。但是滚动条不起作用。我无法使用滚动条,即使面板已满,它也不会滚动。这是我的代码: import java.awt.*; import
我正在尝试在 JScrollPane 中添加 2 个图像。第一个图像是背景,第二个图像与第一个图像重叠。当我运行我的程序时,问题只显示第二张图像! 请帮忙 ImageIcon ii = new Ima
我是一名优秀的程序员,十分优秀!