`
qq355667166
  • 浏览: 35720 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

备份一下

阅读更多

/** */
  /**
   * 创建文本文件.
   *
   * @throws IOException
   *
   */
  
  /*String newStr = name + "|" + datatype + "|" + charlength;
  String s = new String();
    String s1 = new String();
  
  File f = new File("E:\\123.txt");
     if(f.exists()){
      System.out.print("文件存在");
     }else{
      System.out.print("文件不存在");
      f.createNewFile();//不存在则创建
     }
     BufferedReader input = new BufferedReader(new FileReader(f));
    
     while((s = input.readLine())!=null){
      s1 += s+"\n";
     }
     System.out.println(s1);
     input.close();
     s1 += newStr;
    
    
     BufferedWriter output = new BufferedWriter(new FileWriter(f));
     output.write(s1);
     output.close();
   

  
  */
  
  
  /*Properties props=new Properties();  
     props.load(CreatFormAction.class.getResourceAsStream("xx.properties"));  
     Enumeration enumeration = props.propertyNames(); 
     int p=0;
     while(enumeration.hasMoreElements()){
      enumeration.nextElement();
      p++;
      }
     System.out.println("个数"+p);
     int x=p+1;
     String k="c"+x;
      String filepath= "D:/workspace/OfficeERP/founsys-act/com/workflow/test/xx.properties";
      InputStream fis = new FileInputStream(filepath);   
      // 从输入流中读取属性列表(键和元素对)  
      props.load(fis);   
      // 调用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。   
      // 强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。   
     OutputStream fos = new FileOutputStream(filepath); 
      props.setProperty(k, newStr);     // 以适合使用 load 方法加载到 Properties 表中的格式,     // 将此 Properties 表中的属性列表(键和元素对)写入输出流   
     props.store(fos, "Update '" + k + "' value"); 
 */

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics