如何使包含 Jpanel 的 Jframe 可滚动?

How to make a Jframe containing a Jpanel scrollable?

所以我有这个包含 JPanel 的 JFrame,我在其中添加了包含我想要的信息的 JLabel,但由于我会一直添加标签,所以文本太长而无法显示,所以我想添加一个滚动条。基本上我想让我的 JFrame 中有一个 JPanel 可滚动。我有这段代码,但我的问题是即使滚动条出现但它不会移动并且当文本很多时它不会真正起作用,这意味着文本仍然被剪切掉并且滚动条在那里没有移动。有谁知道如何解决这个问题?

import javax.swing.*;
import java.awt.*;
import java.util.*;
public class Bar {
JFrame info = new JFrame("Information");
JLabel ballinf = new JLabel();
JPanel contentPane = new JPanel();
JScrollPane scrolling = new JScrollPane();

public Bar(){
    contentPane.setOpaque(true);
    contentPane.setBackground(Color.WHITE);
    contentPane.setLayout(null);

    scrolling = new JScrollPane(contentPane,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);

    info.add(scrolling);
    info.setSize(750, 600);
    info.setLocationByPlatform(true);
    info.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    info.setVisible(true);
}

public void adding(int pos){       
    ballinf = new JLabel("Something ",JLabel.CENTER);//assume the text will be bigger here and have more info
    ballinf.setSize(700, 30);
    ballinf.setForeground(Color.green);
    ballinf.setLocation(5, 5+pos);
    contentPane.add(ballinf);

    info.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    info.setVisible(true);
  }

public static void main(String[] args){
    Bar stats = new Bar();
    stats.adding(0);
    stats.adding(20);//this will be done in a for loop for more than 2 times so the text ends up to be a lot
}

}

contentPane.setLayout(null);

不要使用空布局!!!

您需要使用适当的布局管理器。阅读有关 Layout Managers 的 Swing 教程部分,了解更多信息和工作示例。然后,布局管理器将在您向面板添加组件时确定面板的首选大小。

滚动窗格将在必要时显示滚动条。

如果您动态地将组件添加到面板(在 GUI 可见之后),那么代码应该类似于:

panel.add(...);
panel.revalidate();
panel.repaint();