- 浏览: 190864 次
- 性别:
- 来自: 苏州
文章分类
最新评论
-
wanglijunjsj:
谢谢,很有用
java log4j的一些总结 -
lxb_champagne:
this.init(); 类都没初始化好,this没用的。
java final变量的初始化问题 -
lg_asus:
上面代码有点小问题,最新代码:
public class Pr ...
判断素数 -
lg_asus:
测试10 million的以内的数据,算出所有素数时间在500 ...
判断素数 -
lg_asus:
文章中说错了:如果只是找一个数在不在其中,则可以直接遍历一次, ...
40亿不重复的正整数,如何判断一个数是否在其中
import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; import java.io.*; import javax.swing.filechooser.*; import javax.swing.filechooser.FileFilter; public class JFileChooserDemo1 implements ActionListener{ JFrame jf = null; JLabel label = null; JFileChooser fileChooser = null; JButton openButton,saveButton ; JTextArea theArea = null; public JFileChooserDemo1(){ jf = new JFrame("JFileChooserDemo1"); theArea = new JTextArea(); label = new JLabel("請選擇文件"); Container contentPane = jf.getContentPane(); openButton = new JButton("open file"); saveButton = new JButton("save file"); openButton.addActionListener(this); saveButton.addActionListener(this); Box vBox = Box.createHorizontalBox(); vBox.add(openButton); vBox.add(Box.createGlue()); vBox.add(saveButton); // JPanel panel = new JPanel(); contentPane.add(vBox, BorderLayout.SOUTH); contentPane.add(label,BorderLayout.NORTH); contentPane.add(theArea,BorderLayout.CENTER); // 將openButton設置為默認按鈕,按回車即可響應 jf.getRootPane().setDefaultButton(openButton); jf.setSize(300,300); jf.setVisible(true); jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public static void main(String...args){ new JFileChooserDemo1(); } @Override public void actionPerformed(ActionEvent e) { File file = null; int result ; System.out.println(e.getActionCommand()); if(e.getSource()==openButton){ fileChooser = new JFileChooser("."); /*fileChooser.setDialogTitle("選取文件"); fileChooser.setApproveButtonText("打開");*/ try{ UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); System.out.println("Windows L&F"); }catch(Exception ne){ System.out.println("L&F error"); } // 設置文件的選擇目錄 fileChooser.addChoosableFileFilter(new JAVAFileFilter("java")); fileChooser.addChoosableFileFilter(new JAVAFileFilter("class")); fileChooser.setAcceptAllFileFilterUsed(false); // 設置文件的顯示視圖 fileChooser.setFileView(new MyFileView()); result = fileChooser.showOpenDialog(jf); if(result==JFileChooser.APPROVE_OPTION){ file = fileChooser.getSelectedFile(); label.setText("你選擇了:"+file.getName()); }else if(result==JFileChooser.CANCEL_OPTION){ label.setText("你沒有選擇任何文檔"); label.setForeground(Color.red); } FileInputStream fis = null; if(file!=null){ try{ fis = new FileInputStream(file); }catch(FileNotFoundException fnde){ label.setText("文件未找到"); return ; } int readbyte; try{ while((readbyte=fis.read())!=-1){ theArea.append(String.valueOf((char)readbyte)); } }catch(IOException ioe){ label.setText("文件讀取發生錯誤"); } finally{ try{ if(fis!=null){ fis.close(); } }catch(IOException ioe){ } } } } if(e.getSource()==saveButton){ fileChooser = new JFileChooser("."); try{ UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); System.out.println("Windows L&F"); }catch(Exception ne){ System.out.println("L&F error"); } result = fileChooser.showSaveDialog(jf); file = null; String fileName; if(result==JFileChooser.APPROVE_OPTION){ file = fileChooser.getSelectedFile(); label.setText("你選擇的存儲文件名稱為:"+file.getName()); }else if(result==JFileChooser.CANCEL_OPTION){ label.setText("你沒有選擇文件存儲名稱"); } FileOutputStream fos = null; if(file!=null){ try{ fos = new FileOutputStream(file); }catch(FileNotFoundException fnde){ label.setText("File Not Found"); return ; } String content = theArea.getText(); try{ fos.write(content.getBytes()); }catch(IOException ioe){ label.setText("文件寫入錯誤"); }finally{ try{ if(fos!=null){ fos.close(); } }catch(IOException ioe){ } } } } } class JAVAFileFilter extends FileFilter{ String ext; public JAVAFileFilter(String ext){ this.ext = ext; } @Override public boolean accept(File file){ if(file.isDirectory()){ return true; } String fileName = file.getName(); int index = fileName.lastIndexOf('.'); if(index>0 && index<fileName.length()-1){ String extension = fileName.substring(index+1).toLowerCase(); if(extension.equals(ext)){ return true; } } return false; } @Override public String getDescription(){ if(ext.equals("java")){ return "JAVA Source File(*.java)"; } if(ext.equals("class")){ return "JAVA Class File(*.class)"; } return ""; } } class MyFileView extends FileView{ /* @Override public String getName(File file){ // java look and feel 功能會處理掉這個項目,一般而言使用jf.getName()當返回值 return null; } @Override public String getDescription(File file){ // java look and feel 功能會處理掉這個項目,一般而言使用jf.getName()當返回值 return null; } @Override public String getTypeDescription(File file){ String extension = getExtensionName(file); if(extension.equals("java")){ return "JAVA Source File"; } if(extension.equals("class")){ return "JAVA Class File"; } return ""; }*/ @Override public Icon getIcon(File file){ String extension = getExtensionName(file); if(extension.equals("java")){ return new ImageIcon(".\\Icons\\home.jpg"); } if(extension.equals("class")){ return new ImageIcon(".\\Icons\\refresh.jpg"); } return null; } /*@Override public Boolean isTraversable(File file){ // java look and feel 功能會處理掉這個項目,一般而言使用jf.getName()當返回值 return null; }*/ public String getExtensionName(File file){ String extension = ""; String fileName = file.getName(); int index = fileName.lastIndexOf('.'); if(index>0 && index<fileName.length()-1){ extension = fileName.substring(index+1).toLowerCase(); } return extension; } } }
參考:深入淺出Java Swing程序設計
发表评论
-
swt tree demo with a text editor
2012-12-25 16:41 1541项目需要,从XML中读取数据生成一个Tree,然后可以对叶子节 ... -
Paint in AWT andSwing
2012-04-20 21:32 0jdk 1.0中用的是AWT,有一个缺点,就是每个组件要和一个 ... -
SwingUtilities的invokeLater和invokeAndWait
2012-02-28 18:00 1167参考: http://blog.csdn.net/bzwm/a ... -
swing第三方jar增强功能
2012-02-14 16:34 2522原文:http://hb.qq.com/a/20101220/ ... -
swing 日期组件
2012-02-03 15:35 1156/** * chega * 2011-9-21上午 ... -
java swing全屏显示方式
2012-02-01 11:01 5129覆盖任务栏和不覆盖任务栏见:http://blog.csdn. ... -
带有行标题的JTable
2012-01-06 15:59 1240/** * @author chega * thi ... -
JColorChooser
2010-07-18 21:25 1177import java.awt.*; import ja ... -
AbstractAction
2010-07-18 10:00 1830import java.awt.*; import ja ... -
JMenuItem和JTollBar
2010-07-18 09:34 1538import java.awt.*; import ja ... -
JTree
2010-07-17 16:41 1208import java.awt.*; import ja ... -
JTree
2010-07-17 14:58 1033import java.awt.*; import ja ... -
JTree
2010-07-17 13:17 1074import java.awt.*; import ja ... -
UndoableEditListener 和 DocumentListener
2010-07-15 21:24 1352import java.awt.*; import ja ... -
JTable增刪行列
2010-07-14 19:57 1455import java.awt.*; import ja ... -
JTable背景色與Boolean類型數據顯示衝突的問題
2010-07-12 16:53 944import java.awt.*; import java ... -
JComboBox每個Item加圖標
2010-07-11 16:46 1289import java.awt.*; import java ... -
JComboBox
2010-07-11 16:33 1308JComboBox(ComboModel):可以繼承Abstr ... -
JList雙向列表
2010-07-11 15:43 812import java.awt.*; import java ... -
給JList每個Item加個圖標
2010-07-11 14:40 1407import java.awt.*; import ja ...
相关推荐
Java的JFileChooser类的使用详解 JFileChooser是一个Java类,提供了一个文件对话框,用于选择文件或文件夹。它可以通过API打开一个模态对话框,或直接实例化并加入到其他组件。 直接使用JFileChooser打开对话框 ...
Java中的`JFileChooser`是Swing库提供的一种用于在用户界面中实现文件选择功能的组件。它允许用户从本地文件系统中打开、保存或者选择文件,对于任何涉及到用户需要交互选择文件的应用程序,如文件加密器,都是必不...
"Java中文件选择器JFileChooser.showSaveDialog实现默认文件名的解决方案" 在 Java 中,文件选择器 JFileChooser 是一个常用的组件,用于选择打开文件或保存文件。然而,在使用 JFileChooser 的时候,我们经常会...
这个过程涉及到的Java类和接口包括`Socket`、`ServerSocket`、`InputStream`、`OutputStream`、`BufferedInputStream`、`BufferedOutputStream`以及`JFileChooser`。理解这些核心组件的工作原理和使用方法是Java网络...
选择路径保存文件,运用JFileChooser组件生成、
Swing中使用JFileChooser选择文件目录
《JFileChooser使用详解》 在Java编程环境中,`JFileChooser`是Swing库中的一个关键组件,用于实现文件选择对话框。它允许用户在本地文件系统中浏览并选择文件或目录,广泛应用于需要用户交互选取文件的应用场景。...
JFileChooser下载文件到本地,可选择文件保存路径,可以上传文件,保存文件chooser.showSaveDialog()函数,打开文件chooser.showOpenDialog()函数
这是JDK里的JFileChooser类解压出的源代码
JFileChooser类简单的修改!其他的地方还没研究明白!希望大家一起研究下!
Java Swing组件文件选择器JFileChooser简单用法示例 Java Swing组件文件选择器JFileChooser是Java Swing中一个功能强大且灵活的文件选择器组件,可以用来选择文件或文件夹。下面我们将通过一个简单的示例来介绍...
JFileChooser是Java Swing组件库中的一个类,用于创建图形化的文件选择对话框。它提供了一个简单而强大的方式让用户选择文件或目录。本文将对JFileChooser的使用进行详解。 首先,创建一个JFileChooser对象是使用...
JFileChooser是Swing库提供的一个用于选择文件和目录的组件。它允许用户浏览文件系统并选择所需的文件或目录。
Java Swing组件JFileChooser用法实例分析 Java Swing组件JFileChooser是Swing中经常用到的一个控件,主要用于文件选择和文件管理。下面将结合实例形式分析JFileChooser文件选择器的功能、使用方法及相关注意事项。 ...
在Java编程中,`JFileChooser` 是Swing库中用于实现文件选择对话框的一个组件,允许用户从文件系统中选择文件或目录。然而,有时在实例化`JFileChooser`对象时,开发者可能会遇到一个常见的错误——空指针异常...
在Java中,我们通常使用`JFileChooser`类来实现文件打开和保存的功能。 首先,让我们详细了解`JFileChooser`类。它是Java AWT和Swing库的一部分,位于`javax.swing`包中。`JFileChooser`提供了两种主要操作:打开...
1. JFileChooser:这是用来打开文件选择对话框的组件,用户可以从中选择一个或多个文件或目录。在资源管理器中,它可能被用作打开或保存文件的入口。 2. JTree:这个组件可以展示文件系统的目录结构。每个节点代表...
JFileChooser jfc1 = new JFileChooser(); jfc1.setDialogTitle("选择文件"); jfc1.showOpenDialog(null); ``` 2. **获取文件路径**:通过`JFileChooser`的`getSelectedFile()`方法获得用户选择的文件,并调用...
JFileChooser实现对选定文件夹内图片自动播放和暂停播放实例代码 JFileChooser是Java Swing中一个功能强大的文件选择器组件,它可以让用户选择文件或文件夹,并提供了一些有用的方法来处理文件操作。在本例中,我们...