A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© code_geass 中级黑马   /  2013-9-25 01:54  /  984 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 code_geass 于 2013-9-25 02:00 编辑
  1. public void othersave()
  2.         {
  3.                         //建立文件名过滤器
  4.                         FileDialog fdsave=new FileDialog(f,"打开",FileDialog.LOAD);
  5.                         File file=null;
  6.                         FilenameFilter ff=new FilenameFilter()        
  7.                         {
  8.                                 public boolean accept(File dir,String name)
  9.                                 {
  10.                                         return dir.getName().endsWith("java")||dir.getName().endsWith("txt");
  11.                                 }
  12.                         };
  13.                                 
  14.                         fdsave.setFilenameFilter(ff);
  15.                                 
  16.                         fdsave.setVisible(true);
  17.                         String s2=fdsave.getFile();
  18.                         String s3 =fdsave.getDirectory();
  19.                         if(s2==null||s3==null)
  20.                                 return;
  21.                         file =new File(s3,s2);
  22.                         try
  23.                         {
  24.                                 if(!(file.exists()))
  25.                                         file.createNewFile();
  26.                         }
  27.                         catch (IOException ex)
  28.                         {
  29.                                 throw new RuntimeException("建立失败");
  30.                         }
  31.                                 
  32.                         BufferedWriter bw =null;
  33.                         try
  34.                         {
  35.                                 bw=new BufferedWriter(new FileWriter(file));
  36.                                        
  37.                                 bw.write(ta.getText());
  38.                                 bw.close();
  39.                         }
  40.                         catch (IOException ex1)
  41.                         {
  42.                                 throw new RuntimeException("保存失败");
  43.                         }
  44.                                        
复制代码

评分

参与人数 1技术分 +1 收起 理由
乔兵 + 1

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马