Tagged Questions
0
votes
2answers
38 views
why is java.nio.FileChannel transferTo() and transferFrom() faster??? Does it use DMA?
Why is java.nio.FileChannel transferTo() and transferFrom() faster than byte-by-byte transfer (stream based or using ByteBuffer) on some JVM/OS combinations???
Do these methods use direct memory ...
0
votes
3answers
199 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 ...
0
votes
0answers
106 views
FileChannel Map Failed
I'm practicing on Java nio and I created a program to find prime numbers.
On running the program, It finds N new prime numbers starting from the last prime stored in a file and it appends the new ...
0
votes
0answers
89 views
Can transferto/from be used with a file channel that is assigned to a named pipe
I have a setup where one program reads from a named pipe and writes the read data to a socket. Another program reads from the socket and writes the data to another named pipe. This is on Linux ...
1
vote
1answer
100 views
Is there a way to have FileChannels close automatically?
I am currently developing an application that requires random access to many (60k-100k) relatively large files.
Since opening and closing streams is a rather costly operation, I'd prefer to keep the ...
2
votes
2answers
296 views
How wait and get lock on file
I want wait till other program releases lock on particular file, then I want to proceed to open that unlocked file.
I came across many solutions, but none are useful, here is my code -
File file = ...
0
votes
1answer
116 views
How to write and read a string property in a Java Object from a file with FileChannel and ByteBuffer
Following is a sample class showing how I put String into ByteBuffer. I am able to write String to a file like this, but I am not sure how can I know the size of byte array to read the title back ...
0
votes
1answer
81 views
Having trouble releasing a Java FileLock
I haven't worked with nio much and I'm having some trouble with releasing a FileLock. Basically, in JVM-A I have a NON-SHARABLE write lock on a file which looks something like this:
File lockfile = ...
-2
votes
1answer
441 views
RandomAccessFile vs. Java NIO File Channel with Buffers [duplicate]
Possible Duplicate:
Fastest Way To Read and Write Large Files Line By Line in Java
I am writing a program that reads large text file (about 300MB), process it line by line and store back ...
2
votes
4answers
687 views
Java NIO MappedByteBuffer OutOfMemoryException
I am really in trouble: I want to read HUGE files over several GB using FileChannels and MappedByteBuffers - all the documentation I found implies it's rather simple to map a file using the ...
0
votes
2answers
133 views
Is there a way to read and write using the same FileChannel?
I am new to Java NIO. I am seeing that a FileChannel object has both read and write methods. But I am unable to read and write using the same FileChannel at a single point of time. Is there a way to ...
0
votes
1answer
158 views
Java-NIO: Use FileChannel.read() with offset-address / NullPointer
Does anyone know how to use the FileChannel.read(ByteBuffer[],int,int)-method of java-NIO to read just a certain part of a file?
ByteBuffer[] bb = new ByteBuffer[(int) fChannel.size()];
...
0
votes
1answer
286 views
Unexplained ClosedByInterruptException. Java FileChannel Bug?
Rarely, my production application encounters an unexpected ClosedByInterruptException when invoking methods on a FileChannel. According to Java documentation, this occurs when the invoking thread is ...
1
vote
2answers
231 views
How to tail a file using a NIO selector, in other words, as lines are added to the file a channel is selected so you can read the lines?
Because you cannot redirect GC logs I am left with the option to redirect it to a file with -Xloggc and then get the contents of this file inside my selector through a file channel of some kind. ...
0
votes
1answer
222 views
Random access a file using File Channel?
When I get FileChannel from FileInputStream, I found I can use position method to freely move file pointer. Does it mean FileChannel provides the functionality of RandomAccessFile?
2
votes
4answers
2k views
Prevent OutOfMemory when using java.nio.MappedByteBuffer
Consider application, which create 5-6 threads, each thread in cycle allocate MappedByteBuffer for 5mb page size.
MappedByteBuffer b = ch.map(FileChannel.MapMode.READ_ONLY, r, 1024*1024*5);
Sooner ...
0
votes
1answer
374 views
Read specific bytes from RandomAccessFile using FileChannel : Java
I have a RandomAccessFile and its FileChannel. What I'm trying to do is read a specific section of the bytes from said file; however, while looking over the FileChannel read methods, I didn't see ...
1
vote
2answers
557 views
ByteBuffer and FileChannel reading only the specified number of bytes
I have a situation where in I keep reading with a ByteBuffer as below.
ByteBuffer buffer = MappedByteBuffer.allocateDirect(Constants.BUFFER_SIZE);
But when the reading reaches the boundary (when ...
11
votes
5answers
2k views
Java NIO: transferFrom until end of stream
I'm playing around with the NIO library. I'm attempting to listen for a connection on port 8888 and once a connection is accepted, dump everything from that channel to somefile.
I know how to do it ...
2
votes
1answer
365 views
FileChannel.write on Linux produces lots of garbage, but not on Mac
I am trying to limit the amount of garbage produced by my log library, so I coded a test to show me how much memory is FileChannel.write creating. The code below allocates ZERO memory on my Mac, but ...
2
votes
1answer
3k views
How to use java.nio.channels.FileChannel to read to ByteBuffer achieve similiar behavior like BufferedReader#readLine()
I want to use java.nio.channels.FileChannel to read from a file, but I want to read line per line like BufferedReader#readLine() does. The reason why I need to use java.nio.channels.FileChannel ...
1
vote
1answer
2k views
What method is more efficient for concatenating large files in Java using FileChannels
I want to find out what method is better of two that I have come up with for concatenating my text files in Java. If someone has some insight they can share about what goes on at the kernel level that ...
0
votes
1answer
455 views
Java Rolling File Creation Fails when attempting to read simultaneously
I am using java.util logging classes to create a rolling file appender. I want to create a log reader that reads from these logs as data is written to them.
The rolling log appender code works fine ...
6
votes
2answers
2k views
Reading a GZIP file from a FileChannel (Java NIO)
I need to read/unpack a .gz file given a FileChannel.
I've played around with extracting GZIP archives using GZIPInputStream, but this won't take a FileChannel. I don't have access to the original ...
3
votes
2answers
1k views
In-memory version of Java's FileChannel
I'm in the process of making some changes to a library that I'm using. In order to reduce memory usage the library is writing its temporary data to disk instead of keeping it in memory. However, for ...
3
votes
6answers
5k views
How to avoid OutOfMemoryError when using Bytebuffers and NIO?
I'm using ByteBuffers and FileChannels to write binary data to a file. When doing that for big files or successively for multiple files, I get a OutOfMemoryError exception.
I've read elsewhere that ...


