0
votes
2answers
38 views

How to use NIO to write InputStream to File?

I am using following way to write InputStream to File: private void writeToFile(InputStream stream) throws IOException { String filePath = "C:\\Test.jpg"; FileChannel outChannel = new ...
-3
votes
1answer
20 views

Difference between SKIP_SIBLINGS and SKIP_SUBTREE [closed]

Is anybody aware of the difference between these two FileVisitResult? Directly from this oracle tutorial: SKIP_SUBTREE – When preVisitDirectory returns this value, the specified directory and ...
1
vote
0answers
33 views

About resolve method of the java.nio.Path

I thoroughly understand the use of resolve(path) and relativize(path). In the following snippet though there is something which is not very clear to me: public FileVisitResult preVisitDirectory(Path ...
-1
votes
1answer
36 views

What is the difference between file and path in NIO.2? [closed]

I was wondering what are the main differences between java.io.File and java.nio.file.Path, in which situations is better to prefer one to the other and what stuff from NIO.2 actually required creation ...
0
votes
1answer
41 views

What exactly is a Link(Symbolic or otherwise)

I was working on a java project with NIO.2 and I encountered the Files.createLink method. Upon doing some research on The Java Tutorials I found that these seem similar to windows shortcuts, but I'm ...
0
votes
3answers
204 views

Java Reading from a File using FileChannel

I've been getting some strange outputs from this code upon reading from a large file, the file was printed using a while loop to 99,999 digits however, upon reading the file and printing the contents ...
1
vote
1answer
177 views

java.nio.Files.move() - DirectoryNotEmptyException on OS X

I'm running a 3rd party library, and part of its operation is to download a zip file to a temp directory, unzip it and then move it from the temp directory to a final directory... for some reason, ...
2
votes
2answers
231 views

Java: Using nio Files.copy to Move Directory

I am new to the nio class, and am having trouble moving a directory of files to a newly created directory. I first create 2 directories with: File sourceDir = new File(sourceDirStr); //this ...
1
vote
0answers
43 views

Java NIO FIle path Issue 2 [duplicate]

I am trying to view all the File permissions of a file through Java. For that I am using Java 1.7 and using Java.nio.Files The code is: File f = new File("C:/Users/drusia/Desktop/TestDir/Dell.txt"); ...
1
vote
2answers
179 views

writing (modifying or adding) a file inside a zip

I've followed the instructions in this thread, using the code in there I've been able to add a file to a zip file without uncompressing and recompresing it, but i have a problem, let me show you my ...
-4
votes
1answer
76 views

why to use channels to read/write files in java? [closed]

What is the use of channels in java?What will channels do while reading/writing files in java?
0
votes
2answers
316 views

java: read and write on a file at the same time ,concurrency on file [duplicate]

I want to write in a text file and read from that at the same time. I want to use a text file as my database in a site and client can request to save sth on it.how can I save to, and read from a file ...
0
votes
1answer
338 views

Maven repository for java.nio

I am writing an application in Java 6 (I have to stick with this). I need to write a module for file watcher. After googling around, I found that Java 7 java.nio package is good. I want to import ...
0
votes
2answers
197 views

Java reading and writing objects to a file

I have been tasked with creating a class (RandomAccessObjectFile) that provides reading and writing of objects as well as seeking within a file. This is my first time using Java File NIO and want to ...
1
vote
1answer
813 views

java nio read line by line

I need to read a file line by line using java nio the first line has to be read and some processing has to happen but nio does not have a method like readline() to read a line at one please provide ...
0
votes
2answers
3k views

How to import java.nio.file package

Im trying to listen to a directory for changes, then discovered java.nio.* was developed to handle efficiently such tasks and more. Then downloaded jdk1.7.0_02 from oracle and started eclipse with it. ...
7
votes
2answers
249 views

Processing huge files in java

I have a huge file of around 10 GB. I have to do operations such as sort, filter, etc on the files in Java. Each operation can be done in parallel. Is it good to start 10 threads and read the file in ...
5
votes
1answer
602 views

MappedByteBuffer sliding window

Are there any ways of getting a MappedByteBuffer to have a sliding window on a file. I have a very large file (20GB) but I only want to make 100MBs at a time. I have tried this just discarding the old ...
0
votes
4answers
83 views

Managing different resource directories

I'm using Eclipse with Maven m2e plugin. My project uses configuration xml files located under config. Maven project layout says you should put stuff like that in srv/main/resources and here the ...
0
votes
1answer
477 views

Paging space, the JVM, and Memory Mapped files (nio)

I recently read an article claiming that, with memory mapped files, paging space is conserved. Question 1 : Why is this a significant benefit ? That is, to clarify, I would pose this question: ...
3
votes
4answers
1k views

Java WatchService not generating events while watching mapped drives

I implemented a file watcher but I noticed that java nio file watcher doesn't generate events for files being copied on mapped drives. For instance, I've run the file watcher on Unix to watch a local ...
2
votes
2answers
116 views

Is File.length platform and filesystem independant

Image I catch a stream of the net and count how many bytes went through my hands, I write this stream to a file. Is the number of counted bytes guranteed to be equal to the file.length() result (after ...
2
votes
3answers
1k views

Read line using Java New I/O

What's the best way to read a line from a file using the New I/O ? I can only get a byte at a time. Any idea?
4
votes
3answers
708 views

Java: File Renaming Detection

Is there a way to detect file renaming using Java? (NIO's WatchService API or any other) From what I've seen when renaming a file two separate events occur - ENTRY_DELETE and then ENTRY_CREATE.
0
votes
4answers
1k views

How can I jump to specific line and read from that in java

I meet a big file(much GB),and I want to jump to specific line directly, and then read some line from that... for example, I hava file like 1.aaaaaaaaaaaa 2.bbbbbbbbbbbb 3.cccccccccccc ...
4
votes
1answer
1k views

Java7 WatchService - Access Denied error trying to delete recursively watched nested directories (Windows only)

I followed the Watching a Directory for Changes Java7 nio2 tutorial to recursively monitor the entire contents of a directory using the code sample WatchDir.java. While this works well on Linux and ...
4
votes
4answers
10k views

Most effective way to write File to ServletOutputStream

ServletOutputStream output = response.getOutputStream(); output.write(byte[]); What is the most effective way to write File to javax.servlet.ServletOutputStream? EDIT: won't this be more effective ...
7
votes
3answers
6k views

Java, IO - fastest way to remove file

My problem is that I have an app which is writing a lot of relatively (100-500kb) small CSV files (tens and hundreds of thousands ). Content of those files then get loaded in database via sql loader ...
28
votes
9answers
35k views

Recursively list files in Java

How do I recursively list all files under a directory in Java? Does the framework provide any utility? I saw a lot of hacky implementations. But none from the framework or nio
63
votes
7answers
37k views

Java NIO FileChannel versus FileOutputstream performance / usefulness

I am trying to figure out if there is any difference in performance (or advantages) when we use nio FileChannel versus normal FileInputStream/FileOuputStream to read and write files to filesystem. I ...
9
votes
7answers
3k views

In Java, what is the best/safest pattern for monitoring a file being appended to?

Someone else's process is creating a CSV file by appending a line at a time to it, as events occur. I have no control over the file format or the other process, but I know it will only append. In a ...