Java GUI中的JFileChooser怎么设置选择框的宽度和高度

如题所述

JFileChooser j = new JFileChooser("F:\\Program Design\\JAVA program") ;
这里的参数用String就没有问题。
温馨提示:内容为网友见解,仅供参考
第1个回答  2017-10-25
Methods inherited from class java.awt.Component
public void setSize(Dimension d)

Resizes this component so that it has width d.width
and height d.height.
This method changes layout-related information, and therefore,
invalidates the component hierarchy.

Parameters:
d - the dimension specifying the new size
of this component

public void setSize(int width, int height)

Resizes this component so that it has width width
and height height.
This method changes layout-related information, and therefore,
invalidates the component hierarchy.

Parameters:
width - the new width of this component in pixels
height - the new height of this component in pixels

Java GUI中的JFileChooser怎么设置选择框的宽度和高度
JFileChooser j = new JFileChooser("F:\\\\Program Design\\\\JAVA program") ;这里的参数用String就没有问题。

JAVA GUI问题。如何触动按钮后弹出文件浏览器和文件名选择框,选择保存...
"JPG & GIF Images", "jpg", "gif");\/\/设置文件类型 chooser.setFileFilter(filter);\/\/打开选择器面板 int returnVal = chooser.showOpenDialog(new JPanel());\/\/保存文件从这里入手,输出的是文件名 if(returnVal == JFileChooser.APPROVE_OPTION) { System.out.println("你打开的文件是: " ...

在Java Swing GUI中,要点击按钮弹出类似于上传文件的那个对话框,事件代 ...
fc.setFileSelectionMode(JFileChooser.FILES_ONLY);if (JFileChooser.APPROVE_OPTION == fc.showOpenDialog(this)) { path=fc.getSelectedFile().getPath();} 最后path 中的值就是选中的那个文件的路径,然后就是IO操作了。那个this一般是指当前Frame或Panel,传入一个Component也可以 ...

matlab的一个GUI中,在点击按钮后弹出一个设置好路径的文件夹,然后确认...
\/\/设置文件选择框的标题 fDialog.setDialogTitle("请选择音频文件");\/\/弹出选择框 int returnVal = fDialog.showOpenDialog(null);\/\/ 如果是选择了文件 if(JFileChooser.APPROVE_OPTION == returnVal){ \/\/打印出文件的路径,你可以修改位 把路径值 写到 textField 中 System.out.println(fDialog....

JavaGUI——Java图形用户界面
基本组件如标签(JLabel)、按钮列表(JComboBox)、列表框(JList)、文本框(JTextField)、密码框(JPasswordField)、文本区域(JTextArea)、进度条(JProgressBar)、滑块(JSlider)等,用于展示文本、图片、文本输入与选择、进度显示等。复杂组件包括文件选取器(JFileChooser)、颜色选取器(JColorChooser)...

swing组件中相当于awt组件中的Canvas的组件是什么?
是list组件

用JAVA编写记事本
\/\/ fileChooser 是 JFileChooser 的实例 \/\/ 显示文件选取的对话框 int option = fileChooser.showDialog(null, null); \/\/ 使用者按下确认键 if(option == JFileChooser.APPROVE_OPTION) { try { \/\/ 开启选取的文件 BufferedReader buf = new BufferedReader( new FileReader( fileChooser.getSelectedFile()));...

相似回答