Tagged Questions
The filechannel tag has no wiki summary.
10
votes
5answers
474 views
Can multiple threads see writes on a direct mapped ByteBuffer in Java?
I'm working on something that uses ByteBuffers built from memory-mapped files (via FileChannel.map()) as well as in-memory direct ByteBuffers. I am trying to understand the concurrency and memory ...
6
votes
2answers
1k 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 ...
4
votes
6answers
5k views
Java: Reading an ASCII file with FileChannel and ByteArrays
I have the following code:
String inputFile = "somefile.txt";
FileInputStream in = new FileInputStream(inputFile);
FileChannel ch = in.getChannel();
ByteBuffer buf = ...
3
votes
2answers
171 views
Should I close the FileChannel?
I came across an issue with one of our utility classes today. It is a helper for files and contains some static file copy routines. Below are the relevant methods extracted along with a test method.
...
3
votes
5answers
313 views
Any code tips for speeding up random reads from a Java FileChannel?
I have a large (3Gb) binary file of doubles which I access (more or less) randomly during an iterative algorithm I have written for clustering data. Each iteration does about half a million reads ...
3
votes
2answers
584 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 ...
2
votes
3answers
142 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
113 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
4answers
211 views
Reading Objects from Random Access File
I wrote a file using Java's FileChannel class that uses RandomAccessFiles. I wrote objects at various locations in the file. The objects were of variable sizes but all of the same class. I wrote the ...
2
votes
3answers
200 views
Java XML parsing
I have a file that has several XML documents like below in sequence.
<?xml version="1.0"?><Node>...<Node>...</Node>...</Node><?xml version...
which repeats several ...
2
votes
1answer
442 views
Does RandomAccessFile.close() internally call FileChannel.force()?
I am using RandomAccessFile to perform some writes to a file as part of a transaction. Before I commit my transaction, I want to be absolutely sure that the data is written to disk.
Calling ...
2
votes
6answers
3k 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 ...
1
vote
4answers
157 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 ...
1
vote
2answers
82 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 ...
1
vote
0answers
151 views
Loading raw VBO data via MappedByteBuffer into OpenGL (not working)
I've attempted to load raw, uncompressed VBO data via the method presented in a talk Google did at GDC 2011. This method uses a MappedByteBuffer to quickly load the data in a subsequent call to ...
1
vote
1answer
883 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
0answers
35 views
File getting deleted on Mac System even though locked using FileChannel.lock()
I have written a utility method to delete the file if its not currently being used by other threads (using simple IO).
To test it I have written the test case.
In which I will spawn a thread which ...
1
vote
1answer
345 views
FileChannel#force and buffering
I would like to make it clear and draw some parallels between FileOutputStream and FileChannel right now.
So first of all, it seems like the most efficient way to write file with standart Java io is ...
0
votes
1answer
34 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?
0
votes
0answers
48 views
Finding duplicates by sequential file scanning
Here is my function
/*keys is an entry of hashmap<CRC of length, List[files]>
left is to be a position of file from which data should be dumped into buffer
right is buffer length*/
private ...
0
votes
2answers
51 views
Java: obtain the filename from a opened RandomAccessFile instance
How can I obtain the filename from a opened RandomAccessFile instance?
I can find only the following methods related to the file itself:
getFD() : which returns a FileDescriptor object
getChannel() ...
0
votes
1answer
82 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 ...
0
votes
2answers
198 views
Processing huge pipe delimited files
With reference to my previous post
Remove first line from a delimited file
I was able to process smaller files and remove the first line .... but incase of huge files there is an issue of memory as ...
0
votes
4answers
192 views
Remove first line from delimited file
I have a delimited file which can contain around millions of records , now I want to delete the first line from the delimited file before processing it further.
The length of the first line is ...
0
votes
2answers
328 views
Using FileChannel to write any InputStream?
Can I write any InputStream into a FileChannel?
I'm using java.nio.channels.FileChannel to open a file and lock it, then writing a InputStream to the output file. The InputStream may be opened by ...
0
votes
3answers
142 views
FileInput/OutputStream versus FileChannels — anything decisive to say?
I am writing a program that has to copy a sizeable, but not huge amount of data from folder to folder (in the range of several dozen photos at once). Originally I was using java.io.FileOutputStream ...
0
votes
1answer
172 views
Fastest way to write a FloatBuffer or Float(float) array to a file in Java
I've got a bunch of float data in a FloatBuffer which needs to be written to a file (without it taking three minutes). Currently a DataOutputStream is used to write the FloatBuffer element by element ...
0
votes
1answer
138 views
Java File Locking with 2 Processess
To start off I have two processes that are running concurrently that support each other. One process reads a simple flatfile which contains snapshots of data separated by timestamps. This application ...
0
votes
2answers
125 views
Filechannel position and string length
In Java chars are 2 bytes long, But when I write a string to a file using a bytebuffer the filechannel position increments by the number of chars. I read that the Filechannel.position() method returns ...
0
votes
1answer
171 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
189 views
File Seek in a dynamically increasing file
I am trying to save a online stream locally and then distribute the stream from my local node.
Program flow:
First request for a url, url-test, creates a single writer thread which starts writing ...
0
votes
1answer
223 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 ...
-1
votes
2answers
96 views
Java Possible FileChannel.map Bug
So I'm trying to read in a very large file using a mapped FileChannel.
The file exceeds 2GB. A snippet of code is:
long fileSize = 0x8FFFFFFFL;
FileChannel fc = new RandomAccessFile("blah.huge", ...