Move a File : File Commands « File Input Output « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » File Input Output » File CommandsScreenshots 
Move a File
  
/*
 * Static File routines.
 * Copyright (C) 2002 Stephen Ostermiller
 * http://ostermiller.org/contact.pl?regarding=Java+Utilities
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * See COPYING.TXT for details.
 */


import java.io.*;
import java.text.MessageFormat;
import java.util.ResourceBundle;
import java.util.Locale;

/**
 * Utilities for File manipulation.
 * More information about this class is available from <a target="_top" href=
 * "http://ostermiller.org/utils/FileHelper.html">ostermiller.org</a>.
 *
 @author Stephen Ostermiller http://ostermiller.org/contact.pl?regarding=Java+Utilities
 @since ostermillerutils 1.00.00
 */
public class FileHelper {

  /**
   * Locale specific strings displayed to the user.
   *
   @since ostermillerutils 1.00.00
   */
  protected static ResourceBundle labels = ResourceBundle.getBundle("com.Ostermiller.util.FileHelper",  Locale.getDefault());


  /**
   * Move a file from one location to another.  An attempt is made to rename
   * the file and if that fails, the file is copied and the old file deleted.
   *
   * If the destination file already exists, an exception will be thrown.
   *
   @param from file which should be moved.
   @param to desired destination of the file.
   @throws IOException if an error occurs.
   *
   @since ostermillerutils 1.00.00
   */
  public static void move(File from, File tothrows IOException {
    move(from, to, false);
  }

  /**
   * Move a file from one location to another.  An attempt is made to rename
   * the file and if that fails, the file is copied and the old file deleted.
   *
   @param from file which should be moved.
   @param to desired destination of the file.
   @param overwrite If false, an exception will be thrown rather than overwrite a file.
   @throws IOException if an error occurs.
   *
   @since ostermillerutils 1.00.00
   */
  public static void move(File from, File to, boolean overwritethrows IOException {
    if (to.exists()){
      if (overwrite){
        if (!to.delete()){
          throw new IOException(
            MessageFormat.format(
              labels.getString("deleteerror"),
              (Object[])new String[] {
                to.toString()
              }
            )
          );
        }
      else {
        throw new IOException(
          MessageFormat.format(
            labels.getString("alreadyexistserror"),
            (Object[])new String[] {
              to.toString()
            }
          )
        );
      }
    }

    if (from.renameTo(to)) return;

    InputStream in = null;
    OutputStream out = null;
    try {
      in = new FileInputStream(from);
      out = new FileOutputStream(to);
      copy(in, out);
      in.close();
      in = null;
      out.flush();
      out.close();
      out = null;
      if (!from.delete()){
        throw new IOException(
          MessageFormat.format(
            labels.getString("deleteoriginalerror"),
            (Object[])new String[] {
              from.toString(),
              to.toString()
            }
          )
        );
      }
    finally {
      if (in != null){
        in.close();
        in = null;
      }
      if (out != null){
        out.flush();
        out.close();
        out = null;
      }
    }
  }

  /**
   * Buffer size when reading from input stream.
   *
   @since ostermillerutils 1.00.00
   */
  private final static int BUFFER_SIZE = 1024;

  /**
   * Copy the data from the input stream to the output stream.
   *
   @param in data source
   @param out data destination
   @throws IOException in an input or output error occurs
   *
   @since ostermillerutils 1.00.00
   */
  private static void copy(InputStream in, OutputStream outthrows IOException {
    byte[] buffer = new byte[BUFFER_SIZE];
    int read;
    while((read = in.read(buffer)) != -1){
      out.write(buffer, 0, read);
    }
  }
}

   
    
  
Related examples in the same category
1. Touch: set File Last Modified Time
2. File Copy in Java with NIO
3. File Copy in Java
4. Counts words in a file, outputs results in sorted form
5. Copying a file using channels and buffers
6. Copy files using Java IO APICopy files using Java IO API
7. Mimic the Unix Grep command
8. Grep tools
9. BGrep: a regular expression search utility, like Unix grep
10. File concatenation
11. Compress files using the Java ZIP API
12. Delete file using Java IO API
13. Undent - remove leading spaces
14. TeePrintStream tees all PrintStream operations into a file, rather like the UNIX tee(1) command
15. Delete a file from within Java, with error handling
16. DirTree - directory lister, like UNIX ls or DOS and VMS dirDirTree - directory lister, like UNIX ls or DOS and VMS dir
17. Program to empty a directory
18. Report on a file's status in Java
19. Simple directory lister
20. Readonly Files
21. List root directoryList root directory
22. Rename a file in Java
23. FNFilter - directory lister using FilenameFilter
24. mkdir examples
25. Program to remove files matching a name in a directory
26. Ls directory lister modified to use FilenameFilterLs directory lister modified to use FilenameFilter
27. Dir Stack Dir Stack
28. Word Count
29. Diff: text file difference utility.Diff: text file difference utility.
30. Count chars in a File
31. Move File
32. Get file date and time
33. Return readable file size with selected value measure
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.