Varun
copy file
1 Answer(s)      3 years and 8 months ago
Posted in : Java Beginners

View Answers

September 21, 2009 at 4:13 PM


Hi Friend,

Try the following code:

import java.io.*;

public class CopyFile{
public void copy(File src, File dst) throws IOException {
InputStream in = new FileInputStream(src);
OutputStream out = new FileOutputStream(dst);
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}
public static void main(String[] args) throws Exception{
CopyFile file=new CopyFile();
file.copy(new File("C:\\Answers\\Master.txt"),new File("c:\\java\\Master.txt"));
System.out.println("File is copied successfully");
}
}

Thanks









Related Pages:
Copy .mdb file for backup.
Copy .mdb file for backup.  hi.. i am new to java... in my application , at one place for taking back up i have to copy .mdb file from one place... tell me for multiple files of multiple type...how we can copy.. thank you
copy file - Java Beginners
copy file  i want to copy file from one folder to another  ... CopyFile{ public void copy(File src, File dst) throws IOException...(String[] args) throws Exception{ CopyFile file=new CopyFile(); file.copy(new
Java Copy file example
Copy one file into another       Copy one file into another In this section, you will learn how to copy content of one file into another file. We
How to copy a file in java
How to copy a file in java In this section you will learn about how to copy... direct way to copyfile.  What we can do is, read a content of one...; FileUtils.copyFile(source file , destinationfile), which allows you to copy a file
Copy one file into another
Copy one file into another In this section, you will learn how to copy content of one file into another file. We will perform this operation by using...;This string is copied from one file to another\n"); bf.close(); InputStream
How to copy a file
How to copy a file In this section, you will learn how to copy a file using...;} } The above code makes a copy of the file... creates two File instances to specify source and destination file respectively
Copy file in php, How to copy file in php, PHP copy file
Learn How to copy file in php. The PHP copy file example explained here.... The copy function in PHP is used to copy the content of one file into another file. Syntax of Copy file in PHP boolean copy ( string $source_file, string $target
File copy through intranet - Java Beginners
File copy through intranet  Can i copy files from system A to System B connected through intranet?? Is this possible through java IO? If yes, please let me know
Copy Directory or File in Java
Copy Directory in Java      ... how to copy the directory and files into a new directory. In this program, you will see how contains of a directory or a file is copied  from
copy file from folder to folder - Java Beginners
copy file from folder to folder   my requirement is I need to copy... wich contains the file to be copied. I want to copy the file from..... it varies can you please provide sample example to copy the file regards
PDF Copy(File) has many pages.
PDF Copy(File) has many pages.  Dear All, I make Jasper Report it compile ,run and view properly. when i am try to send it pdf format it also sent it it pdf properly. but a that PDF Copy(File) has many pages. single copy
copy() example
Copying a file in PHP In this example, you will learn 'how to copy a file in PHP programming language?' For copying a file, we use copy command from source...;; if(copy($source, $destination)) { echo "File copied successfully."
File copy from one directory to another in java
File copy from one directory to another in java  I am trying to find... in Java which will help in writing code for copy the file in just few lines of code... directory? My program should be able to copy the file of any size. Our program does
Copy Files - Java Beginners
Copy Files  I saw the post on copying multiple files (http... into a .txt file, importing that, and then somehow having Java read the filenames and then copy it to the folder I need. Does anyone have a similar program
FTP file copy problem? - Java Beginners
FTP file copy problem?  Hi, Can any one tell me how to set file...-net-1.4.1.jar to copy files from local system to server. Eg: local file name ?test.doc? (Today, December 29, 2009, 5:09:33 PM) when I moving this file to server, the files
how to copy file from one directory to another in java with examples
how to copy file from one directory to another in java with examples  how to copy file from one directory to another in java with examples? I want a java with example code Thanks   Hi, Please check the thread File
File copy from one drive to another. - Java Beginners
File copy from one drive to another.  I want to copy a .mp3 file from one drive(let d: drive)to another drive(let e: drive) in my Windows XP. How can I do
Copy a file to other destination and show the modification time of destination file
Copy a file to other destination and show the modification time... checks all the condition before copy to destination file, for example- source... can copy the file now.*/ fis = new FileInputStream
how to copy the directory in to ftp server using java
how to copy the directory in to ftp server using java  how to copy... working directory with the same name (which you wish to copy) as: issueCommand... directory.For example : ftp.setLocalDir(new File("C:/tmp"); Now you can upload
How to copy text from a gif image
How to copy text from a gif image  I have some gif images that containing some important text. i want to have that text in my notepad file. i have.... so, please tell me how can i copy that text to my notepad. i am using ubuntu
How to copy many files into one file and how to manage the content of the final file?
How to copy many files into one file and how to manage the content of the final file?  Hi, i'm trying to code that copy the content of all txt file in a folder and paste it into one file. My following code is working
C String Copy
by the header file <string.h> that will copy the specified string from st1... C String Copy       In this section, you will learn how to copy the string in C. You can see
file
file  how can copy the information in the file to the string?   Store file data into String
Copy text file in a HTML form.
Copy Text File in a HTML form For copying a text file from one source to other... action into php code to copy the file. In PHP code, first begin the PHP tag, Define the source file and destination file variable. Copy file from source
how to write function of copy from one to another location in this code
how to write function of copy from one to another location in this code  I need to write a code to copy a file from one location to another using... to add code for copy using swing!! thanks in advance.** /* For Browse button
Copy multiple files
Copy multiple files       ... is copied to another file. The java.io package provides this facility. For copping the data of multiple file, you need all files in a specified directory where
Array copy
Array copy  Hello all. could someone telle me how to copy an array (holding random numbers) to a new array...( then make randomnumbers on this new array ) but without changing the excisting array ? last . possibility
Posting Copy and Paste HTML
Posting Copy and Paste HTML   Posting Copy and Paste HTML
How to copy files from one folder to another based on lastmodified date - Java Beginners
How to copy files from one folder to another based on lastmodified date  I have to make a simple utility to copy files from a folder to another..., String dtFile){ try{ File f1 = new File(srFile); File f2 = new File
Java - Copying one file to another
);   }   } } Download File Copy... Java - Copying one file to another       This example illustrates how to copy contents from one
data copy - SQL
data copy   how to copy values of one column from one table into another column of another table?  Hi INSERT INTO table_name (column_name) AS SELECT DISTINCT VALUES FROM table_name (column_name
Copy and pasting - Java Beginners
Copy and pasting  hi all, I am copying some cells from excell... JPopupMenu popup; JTable table; public BasicAction cut, copy, paste, selectAll...); copy = new CopyAction("Copy", null); paste = new PasteAction("Paste",null)  
Copy Mails to Xl sheet - JavaMail
Copy Mails to Xl sheet  Can somebody give me the Java code to copy outlook mails into an Xl sheet
JavaScript Copy Array
JavaScript Copy Array     ... useful in complex applications. In this section, you will study how to copy an array... using JavaScript.. <html> <head> <h2>Copy
copy string to string objective c
copy string to string objective c  How to copy a value of NSString to another string in Objective C? I have to different views and i am will to show the NSString value in both of them. Thanks
Creating a Copy of a Collection
Creating a Copy of a Collection   ... and then copy the collection. The copied collection contains the reference... a collection (list) and copy for the duplicate collection with content
Ad Copy,Ad Copy Services,Effective Copy for Ads,Ad Copy Outsourcing India
Ad Copy Writing effective copy for ads, web pages, sales letters and other... successful advertising copy. These rules apply to writing copy for any type... copy produces the biggest response when each reader can believe the message
copy something from a webpage to my webpage
copy something from a webpage to my webpage  How can I copy something from a webpage to my webpage
Convert Class File to .java File - Java Beginners
Convert Class File to .java File  Sir, How To Convert .class file to .java File. Please Help me  Use cavaj software ,which is freeware... . It also provides the facility to copy paste
about pdf file handeling
about pdf file handeling  i have downloaded a jar file containing packages for writing in pdf files . in which folder i should copy it ? i'm using windowsXP os.pls give whole path
Copy Table in a MySQL Database
Copy Table in a MySQL Database       In this section, you will learn to copy one table to another... one table to another in a same MySQL database. To copy any table,  firstly
Copy a Html chart into PPT - Java Beginners
Copy a Html chart into PPT  Hi Experts, i am facing with a problem without solution. I have a Html site and would like to write a code so that by clicking on a button the graph will be copied in an active ppt. Could you
Copy char array into string
into it and the String.valueOf(charArray) copy the content of character
scp using file transfer - Security
scp using file transfer  scp(secure copy protocol) using to download a file from linux server to windows xp . using scp, username, password authentication
file uploading - JSP-Servlet
file uploading  Hi, thanks a lot for your kind answer. Now my program... problem. Im not geeting the full output for the program. Even, the file... copy my coding and output below. I hope someone will guide me. Meanwhile im trying
Copy One Database Table to Another
Copy One Database Table to Another       In this section, you will learn to copy one database table to another database table. That means we copy one table to a different table
java program to copy the contents of one folder to another folder
java program to copy the contents of one folder to another folder  java program to copy the contents of one folder to another folder   Have a look at the following link: Java Copy one folder to another
File Handling - Java Beginners
File Handling  Q. Write a java prg which accepts a list of existing...; fout3.write(ch);//copy contents of f1 to f3 if((ch>='A')&&(ch<='Z...);//copy contents of f2 to f3 } fin2.close(); fout3.close(); try
stand alone program for text file editing
stand alone program for text file editing  steps 1.read a text file origi.txt from a location 2.make a copy of the text file to the same location with name as origi_copy.txt(example) 3.each line of the copy should start from 10

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.