且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

JFileChooser嵌入在JPanel中

更新时间:2023-12-05 08:34:16

JFileChooser扩展了JComponent和Component,因此您应该能够将它直接添加到您的框架中。

JFileChooser extends JComponent and Component so you should be able to add it directly to your frame.

JFileChooser fc = ...
JPanel panel ...
panel.add(fc);