Android File Copy dumbfilecopy(File source, File dest)

Here you can find the source of dumbfilecopy(File source, File dest)

Description

Copies a file.

License

Apache License

Declaration

public static void dumbfilecopy(File source, File dest)
        throws IOException 

Method Source Code

//package com.java2s;
/**/* w w w . j a  v  a 2s.c o  m*/
 * Licensed to Cloudera, Inc. under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  Cloudera, Inc. licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class Main {
    /**
     * Copies a file.
     */
    public static void dumbfilecopy(File source, File dest)
            throws IOException {
        FileOutputStream out = new FileOutputStream(dest);
        FileInputStream in = new FileInputStream(source);
        byte[] buf = new byte[(int) source.length()];
        in.read(buf);
        out.write(buf);
        in.close();
        out.close();
    }
}

Related

  1. copyFiles(File src, File dst)
  2. copyImgFile(String sourcePath, String fileId)
  3. copyResource(Class cls, String strResSource, String strFile)
  4. copyStringToFile(String content, String FilePath)
  5. copyfile(File source, File destination)
  6. fileCopy(File dbFile, File backup)
  7. fileCopy(File sourcefile, File destinctionFile)
  8. fileCopy(File sourcefile, String destinctionFile)
  9. fileCopy(String sourcefile, String destinctionFile)