Total members 11889 |It is currently Tue Mar 19, 2024 8:05 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Copy file to file in java implementation
java code
import java.io.*;

public class CopyBytes {
public static void main(String[] args) throws IOException {
File inputFile = new File("f1.txt");
File outputFile = new File("f2.txt");

FileInputStream in = new FileInputStream(inputFile);
FileOutputStream out = new FileOutputStream(outputFile);
int c;

while ((c = in.read()) != -1)
out.write(c);

in.close();
out.close();
}
}




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Copy file to file in java code- implementation
 copy file     -  
 moving file with copy() function in php     -  
 Encrypt/Decrypt a file from source file to target file.     -  
 quicksort algorithm implementation java code- array sorting     -  
 Upload PHP file code     -  
 Bubble Sort Algorithm Java Implementation Code-Sorting Array     -  
 location of a package statement within a source code file     -  
 file descriptor vs file pointer     -  
 getting file name of html input file tag using jsp     -  
 Creating a JAR file in Java     -  



Topic Tags

Java Files and I/O






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com