The filechannel tag has no wiki summary.
-1
votes
1answer
34 views
Read and Write with File channel [closed]
I need help on the file operation using FileChannel . My requirement is, I have to read a big file from the system, then need to check the file line by line. If certain strings found then need to add ...
0
votes
2answers
34 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 ...
-1
votes
0answers
31 views
Read contents of a file into int array using FileChannel
I am storing data from an int array into a file using a FileChannel. I would like to read back that data from the file but I haven't found an example that shows how this is done.
0
votes
3answers
184 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
104 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
1answer
34 views
IOUtils.closeQuitely for FileChannel
I wanted to know the Apache library method IOUtils.closeQuitely does well with FileChannel.
I see it takes Closeable as argument and FileChannel does implement it up in hierarachy. But
can we face any ...
0
votes
0answers
88 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
274 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
111 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
78 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 = ...
0
votes
1answer
146 views
Why does changing the way you initialise RandomAccessFile objects change FileChannel performance?
Im investigating the possibility of re-writing some code that bottlenecks on disk writes into java. The javadoc does not make clear why the first two code loops below would perform so differently to ...
1
vote
2answers
92 views
File Channel in C++
In java, there are FileChannels where I can read from file channel. I can also set the position in the channel where I want to start reading.
Any similar functions in C++/C?
-2
votes
1answer
438 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
2answers
150 views
java 7 filechannel not closing properly after calling a map method
Hi guys im working on a sc2replay parsing tool, i build it on top of MPQLIB http://code.google.com/p/mpqlib/
unfortunately the tool i'm uses filechannels to read through the bzip files,
and uses ...
2
votes
4answers
669 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
4answers
180 views
Java - Process bytes as they are being read from a file
Is there a way to have one thread in java make a read call to some FileInputStream or similar and have a second thread processing the bytes being loaded at the same time?
I've tried a number of things ...
0
votes
2answers
128 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
3answers
331 views
android : faster solution to copying one file to another
I am copying files using BufferedInputStream .
I copy byte[] in loop.
This is quite slow for big files.
I saw the FileChannel structure. I tried using this also. I want to know if FileChannel is ...
0
votes
2answers
267 views
Java: Writing with FileChannel to a file make the file shrink?
I tried to write specific bytes to certain position of a file using FileChannel. But actually the file shrink to the last position where I write change. I do it like this:
Path path = ...
0
votes
0answers
358 views
java FileChannel writing to a file and adding \n at the end
i'm trying to make log using the FileChannel.
for some reason it doesn't get the \n character in my file.
my function:
private void serverLog(String status, String message)
{
...
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
283 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. ...
2
votes
2answers
363 views
Disadvantage of FileChannel -> BufferedReader -> Reader
FileChannel will faster than BufferedReader, BufferedReader will more faster than Reader because FileChannel and BufferedReader has cut off some itermediate steps to receive data.
My question is : ...
0
votes
1answer
219 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
466 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() ...
5
votes
2answers
2k 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.
...
0
votes
1answer
371 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
552 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 ...
1
vote
2answers
485 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", ...
2
votes
1answer
361 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
2k 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 ...
15
votes
7answers
2k 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 ...
0
votes
2answers
631 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
1k 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 ...
1
vote
0answers
280 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
2answers
3k 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 ...
1
vote
3answers
693 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
534 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
333 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 ...
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 ...
2
votes
3answers
511 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 ...
0
votes
2answers
363 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 ...
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 ...
1
vote
0answers
67 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
386 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 ...
3
votes
1answer
1k 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 ...


