Tagged Questions
3
votes
2answers
286 views
FileChannel.transferTo for large file in windows
Using Java NIO use can copy file faster. I found two kind of method mainly over internet to do this job.
public static void copyFile(File sourceFile, File destinationFile) throws IOException {
...
3
votes
3answers
102 views
Java copy files distorting file
So I am trying to copy a file to a new location this way:
FileReader in = new FileReader(strTempPath);
FileWriter out = new FileWriter(destTempPath);
int c;
while ((c = in.read()) != -1){
...
1
vote
2answers
73 views
File copies itself in Java
can anyone suggest me a way to have a running JAR file copy itself to a specific directory?
Thank you
Here's what I am trying:
import java.io.File;
import java.io.FileReader;
import ...
1
vote
1answer
879 views
What does “Insufficient system resources…” error mean?
This question spans both serverfault and stackoverflow so I just picked this one.
I get the following exception with some simple file copy code. Its running on Windows Server 2003 x64
Caused by: ...
1
vote
4answers
346 views
java - effective files copying
i would like to know which is the best way to copy large number of files.
0
votes
2answers
961 views
CamelContext.start() doesn't block
I want to run a simple Apache Camel example that copies files from one directory to another:
CamelContext context = new DefaultCamelContext();
context.addRoutes(new RouteBuilder() {
public void ...