JFile 选择器查询

发布于 2024-11-07 20:12:25 字数 52 浏览 0 评论 0原文

如何在屏幕中央显示 JFile-Chooser。使用 ToolKit 的传统方法不起作用。

How to display JFile-Chooser at the Center of the screen. The conventional method of using ToolKit is not working.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜心 2024-11-14 20:12:25

查看 Javadoc 中的方法 JFileChooser#showDialog(Componentparent, StringapproveButtonText) 抛出 HeadlessException,它说:

父参数确定两个
things:打开的框架
对话框取决于其组件
定位外观和感觉应有的位置
放置对话框时请考虑。如果
父级是一个 Frame 对象(例如
JFrame),那么对话框取决于
框架和外观
对话框相对于
框架(例如,居中于
框架)。如果父级是一个组件,
那么对话框取决于框架
包含该组件,并且是
相对于组件定位
(例如,以
成分)。 如果父级为空
那么对话框依赖于不可见的
窗口,并将其放置在
依赖于外观和感觉的位置,例如
作为屏幕中心

Check out Javadoc for the method JFileChooser#showDialog(Component parent, String approveButtonText) throws HeadlessException, it says:

The parent argument determines two
things: the frame on which the open
dialog depends and the component whose
position the look and feel should
consider when placing the dialog. If
the parent is a Frame object (such as
a JFrame) then the dialog depends on
the frame and the look and feel
positions the dialog relative to the
frame (for example, centered over the
frame). If the parent is a component,
then the dialog depends on the frame
containing the component, and is
positioned relative to the component
(for example, centered over the
component). If the parent is null,
then the dialog depends on no visible
window, and it's placed in a
look-and-feel-dependent position such
as the center of the screen.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文