`

JAVA每日一题18

阅读更多

    题目:在很多操作系统中,文件名长度都有限制,所以在文件名后面添加_old有时可能会失败。修改避免覆盖文件的程序实例,将一个三位数添加到文件名的末尾,以此来和已存在的文件向区别,而不仅仅是添加_old。程序应该检查存在文件的文件名后面的三位数,并用一定数量的增加值将其替换,以使其具有唯一性。(也就是说,将最后三位数增加1,直到产生了具有唯一性的文件名为止。)

 

import java.io.File;
import java.io.FileOutputStream;
 

import java.io.FileNotFoundException;

public class AvoidOverwritingFile {
  public static void main(String[] args) {
    String filepath = "C:/Beg Java Stuff/myFile.txt";

    if(args.length>0) {                            
      filepath = args[0];  
      }                      
      
    File aFile = new File(filepath);
    FileOutputStream outputFile = null;          // Stores the stream reference
    if (aFile.isFile()) {
      File newFile = aFile;                      // Start with the original file

      // We will append three digits to the file to make it unique
      do {
        String name = newFile.getName();         // Get the name of the file
        int period =  name.indexOf('.');         // Find the separator for the extension
        if(period == -1) {                         
          newFile = new File(newFile.getParent(), extendName(name));       // ***
        } else {
          newFile = new File(newFile.getParent(), 
                           extendName(name.substring(0, period)) 
                           + name.substring(period));
        }
      } while(!aFile.renameTo(newFile));         // Stop when renaming works
    } 

    // Now we can create the new file
    try {
      // Create the stream opened to append data
      outputFile = new FileOutputStream(aFile);
      System.out.println(aFile.getName()+" output stream created");
    } catch (FileNotFoundException e) {
      e.printStackTrace(System.err);
    } 
    System.exit(0);
  }
  // *** new method to adding or increment three digits at the end of a name starting at "000"
  private static String extendName(String name) {
    StringBuffer newName = new StringBuffer(name);              // We will create the new name in this buffer
    String digits = newName.substring(newName.length()-3,newName.length());   // Get last three characters
    int number = 0;
    try {
      number = Integer.parseInt(digits);                                      // Parse the last 3 characters
      ++number;                                                               // We got an integer so increment it
      newName.delete(newName.length()-3,newName.length());
    } catch(NumberFormatException nfe) {                                      // Last 3 characters not an integer
      // This will be thrown if digits is not a parsable integer
      // but if we just do nothing here execution will continue
      // with number as its initial value, which is zero.
    }
    digits = String.valueOf(number);                // Get number as a string 
    assert digits.length() < 4;                     // Make sure we don't run over three digits!     
   
    // We can now create the new name by appending "000" and replacing some or all of these
    // by the digits in the String, digits.   
    return newName.append("000").replace(newName.length()-digits.length(),newName.length(), digits).toString();    
  }
}

 

 

 

 

 

 

 

 

 

 

 

4
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics