netbeans【文件选择器】怎么设?
展开全部
在按钮的事件上写几句代码就行了:
JFileChooser chooser = new JFileChooser();
int returnVal = chooser.showOpenDialog(parent);
if(returnVal == JFileChooser.APPROVE_OPTION) {
System.out.println("You chose to open this file: " +
chooser.getSelectedFile().getName());
}
JFileChooser chooser = new JFileChooser();
int returnVal = chooser.showOpenDialog(parent);
if(returnVal == JFileChooser.APPROVE_OPTION) {
System.out.println("You chose to open this file: " +
chooser.getSelectedFile().getName());
}
追问
我想用【文件选择器】来设置用户的【头像替换】问题,那链接【文件选择器】又该怎样弄呢?
追答
头像替换就是图片替换吧,用户通过文件选择器,选择图片后,你的程序不就能知道图片的位置,从而替换之前的图片。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询