NIO is Java 'New I/O' introduced in 1.4, providing non-blocking and multiplexed network I/O; 'direct' (native) buffers; file locks and mapped files; and character set codecs.
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 ...
33
votes
4answers
5k views
Java 7: Path vs File
For new applications written in Java 7, is there any reason to use a java.io.File object any more or can we consider it deprecated?
I believe a java.nio.file.Path can do everything a java.io.File ...
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
28
votes
3answers
39k views
Java: Converting String to and from ByteBuffer and associated problems
I am using Java NIO for my socket connections, and my protocol is text based, so I need to be able to convert Strings to ByteBuffers before writing them to the SocketChannel, and convert the incoming ...
24
votes
2answers
945 views
Play framework/Netty does not release socket
Have already asked similar question, but deleted it, since thought I fixed it, but I was wrong.
I'm using Play framework in production for one of my web projects. From time to time Play does not ...
19
votes
6answers
8k views
Binary search in a sorted (memory-mapped ?) file in Java
I am struggling to port a Perl program to Java, and learning Java as I go. A central component of the original program is a Perl module that does string prefix lookups in a +500 GB sorted text file ...
18
votes
4answers
3k views
Why the odd performance curve differential between ByteBuffer.allocate() and ByteBuffer.allocateDirect()
I'm working on some SocketChannel-to-SocketChannel code which will do best with a direct byte buffer--long lived and large (tens to hundreds of megabytes per connection.) While hashing out the exact ...
18
votes
5answers
2k views
Java in 2011: threaded sockets VS NIO: what to choose on 64bit OS and latest Java version?
I've read several posts about java.net vs java.nio here on StackOverflow and on some blogs. But I still cannot catch an idea of when should one prefer NIO over threaded sockets. Can you please examine ...
17
votes
3answers
6k views
Java Non-Blocking and Asynchronous IO with NIO & NIO.2 (JSR203) - Reactor/Proactor Implementations
So here I am reading one of my favorite software pattern books (Pattern-Oriented Software Architecture - Patterns for Concurrent and Networked Objects), specifically the sections on Proactor/Reactor ...
17
votes
5answers
5k views
Java thread per connection model vs NIO
Is the non-blocking Java NIO still slower than your standard thread per connection asynchronous socket?
In addition, if you were to use threads per connection, would you just create new threads or ...
16
votes
10answers
2k views
One thread per client. Doable?
I'm writing a Java server which uses plain sockets to accept connections from clients. I'm using the fairly simple model where each connection has its own thread reading from it in blocking mode. ...
15
votes
4answers
15k views
Gets byte array from a ByteBuffer in java
Is this the recommended way to get the bytes from the ByteBuffer
ByteBuffer bb =..
byte[] b = new byte[bb.remaining()]
bb.get(b, 0, b.length);
15
votes
4answers
3k views
Java I/O vs. Java new I/O (NIO) with Linux NPTL
My webservers use the usual Java I/O with thread per connection mechanism. Nowadays, they are getting on their knees with increased user (long polling connection). However, the connections are mostly ...
14
votes
4answers
10k views
ByteBuffer.allocate() vs. ByteBuffer.allocateDirect()
To allocate() or to allocateDirect(), that is the question.
Hi.
For some years now I've just stuck to the thought that since DirectByteBuffers are a direct memory mapping at OS level, that it would ...
13
votes
7answers
1k views
How to deal with a very large text file?
I'm currently writing something that needs to handle very large text files (a few GiB at least). What's needed here (and this is fixed) is:
CSV-based, following RFC 4180 with the exception of ...
12
votes
10answers
4k views
NIO Performance Improvement compared to traditional IO in Java
I have seen many articles/blogs saying that Java NIO is a better solution compared to traditional Java IO.
But today one of my co-worker showed me this blog ...
12
votes
2answers
266 views
Opening a large file in Java is very slow
I have a large (12GB) file and I need to extract small pieces of data (a few kilobytes each) from it, using Java. Seeking and reading the data, once the file is open, is very fast, but opening the ...
12
votes
2answers
3k views
Java Segmentation fault
I am using a 64-bit JVM (Oracle), when i try to allocate buffer sizes larger than 256 MB it complains and throws a "segmentation fault" error. I and allocation direct memory buffers using java NIO, ...
11
votes
9answers
13k views
Java Large Files Disk IO Performance
I have two (2GB each) files on my harddisk and want to compare them with each other:
Copying the original files with Windows explorer takes approx. 2-4 minutes (that is reading and writing - on the ...
11
votes
4answers
22k views
Java NIO: What does IOException: Broken pipe mean?
For some of my Java NIO connections, when I have a SocketChannel.write(ByteBuffer) call, it throws an IOException: "Broken pipe".
What causes a "broken pipe", and more importantly, is it possible to ...
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 ...
11
votes
1answer
649 views
Old I/O thread per client model or NIO reactor pattern?
I am writing the server-side networking of a multiplayer game. The game is an RPG and it has the absolute maximum capacity of 2000 players, but it practically will max out at about 300 players, ...
10
votes
7answers
3k views
Extending ByteBuffer class
Is there any way to create class that extends ByteBuffer class?
Some abstract methods from ByteBuffer are package private, and if I create package java.nio, security exception is thrown.
I would ...
10
votes
3answers
3k views
Advantages of Java NIO in blocking mode versus traditional I/O?
I have pretty much already decided not to use asynchronous, non-blocking Java NIO. The complexity versus benefit is very questionable in general, and I think it's not worth it in this project ...
10
votes
1answer
12k views
How to send and receive serialized object in socket channel
I want to transmit a serialized object over a socket channel.
I want make "Hi friend" string as serialized object and then write this object in socket channel while in the other end i want to read the ...
10
votes
2answers
691 views
Making a thread which cancels a InputStream.read() call if 'x' time has passed
I currently have a working I/O stream from Android's BluetoothChat Example, but have run into problems. My application connects via bluetooth to a bluetooth module, which in turn sends a signal to a ...
10
votes
4answers
4k views
Java ByteBuffer performance issue
While processing multiple gigabyte files I noticed something odd: it seems that reading from a file using a filechannel into a re-used ByteBuffer object allocated with allocateDirect is much slower ...
10
votes
4answers
451 views
How to avoid making defensive copies of ByteBuffer?
I've got a class that takes a ByteBuffer as a constructor argument. Is there a way to avoid making defensive copies in order to ensure that the buffer doesn't get modified past that point?
...
9
votes
1answer
7k views
Difference between ByteBuffer.allocateDirect() and MappedByteBuffer.load()
I was trying to implement a sort of shared cache between two or more JVMs by memory mapping a particular file using MappedByteBuffer. From the specifications I see that when we use ...
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 ...
9
votes
2answers
3k views
long polling netty nio framework java
How can I do long-polling using netty framework? Say for example I fetch http://localhost/waitforx
but waitforx is asynchronous because it has to wait for an event? Say for example it fetches ...
9
votes
5answers
3k views
java.net versus java.nio
At what point is it better to switch from java.net to java.nio? .net (not the Microsoft entity) is easier to understand and more familiar, while nio is scalable, and comes with some extra nifty ...
9
votes
1answer
2k views
Drawbacks of tomcat http11nioprotocol [closed]
With tomcat 6.0.x, we can use Http11NIOprotocol and get scalable performance. Is there any specific reason/drawback of using NIOprotocol, that tomcat is not using this protocol as a default protocol?
9
votes
7answers
1k views
How should I deal with a very large array in Java?
I have an algorithm which currently allocates a very large array of doubles, which it updates and searches frequently. The size of the array is N^2/2, where N is the number of rows on which the ...
9
votes
4answers
5k views
Any NIO frameworks for .NET?
Are there any non-blocking IO frameworks for .NET?
I am looking for something similar to what Apache Mina and JBoss Netty provides for Java: a framework for implementing highly scalable servers - ...
9
votes
5answers
388 views
how can I subclass ByteBuffer?
So the Java NIO architects didn't make a ByteBuffer interface, but rather a ByteBuffer class, which isn't a final class, but it has no package-public constructors, and therefore it can't be subclassed ...
8
votes
4answers
5k views
Netty performance
Is there any real difference to the performance when you use Netty and if you don't use it in an application with tens of thousand of connections?
8
votes
3answers
3k views
Is hosting a Netty Server inside Tomcat feasible/desirable?
We building a Netty/NIO based service, and I'm considering the deployment of this service to our production environment. Our standard way of deploying services is as WARs, to be deployed inside ...
8
votes
4answers
2k views
Java TCP/IP Socket Performance Problem
Our application is reading data very fast over TCP/IP sockets in Java. We are using the NIO library with a non-blocking Sockets and a Selector to indicate readiness to read. On average, the overall ...
8
votes
1answer
725 views
How to access a sub-file/folder in Java 7 java.nio.file.Path?
Java 7 introduced java.nio.file.Path as a possible replacement for java.io.File.
With File, when I access a file under a specific, I would do:
File parent = new File("c:\\tmp");
File child = new ...
8
votes
1answer
1k views
Java 7 new IO API - Paths.exists
Does anyone know what happened to the path.exists() API method in the latest Java 7 API?
I cannot find the change in the change logs, and between b123 and b130, the method has been removed from the ...
8
votes
2answers
2k views
When using Java's FileLock, is it ok to let close() to automatically do a lock.release()?
As most should know close() also closes any streams uses.
This allows the follow code:
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(...)));
...
br.close();
This ...
8
votes
2answers
810 views
Java NIO selector minimum possible latency
I am doing some benchmarks with an optimized Java NIO selector on Linux over loopback (127.0.0.1).
My test is very simple:
One program sends an UDP packet to another program that echoes it back to ...
8
votes
3answers
6k views
How does the Netty threading model work in the case of many client connections?
I intend to use Netty in an upcoming project. This project will act as both client and server. Especially it will establish and maintain many connections to various servers while at the same time ...
8
votes
3answers
5k views
SSL and SocketChannel
Ideally, I only need a simple SSLSocketChannel.
I already have a component that reads and writes message over ordinary SocketChannel, but for some of these connections, I have to use SSL over the ...
7
votes
3answers
7k views
Wrapping a ByteBuffer with an InputStream
I have a method that takes an InputStream and reads data from it. I would like to use this method with a ByteBuffer also. Is there a way to wrap a ByteBuffer so it can be accessed as a stream?
7
votes
3answers
5k views
Java socket listener using JAVA.NIO
Im working on a socket listener that has to listen on 2 ports for 2 types of data( port 80 and port 81). These data are very similar as in the kind of operations that are performed on the data and are ...
7
votes
6answers
4k views
Deep copy duplicate() of Java's ByteBuffer
java.nio.ByteBuffer#duplicate() returns a new byte buffer that shares the old buffer's content. Changes to the old buffer's content will be visible in the new buffer, and vice versa. What if I want a ...
7
votes
1answer
7k views
Where is java.nio.file
I am reading java documentation that tells me there should be a java.nio.file namespace. But when I attempt to import it the precompiler is complaining that it doesn't exist.
What's up?
7
votes
5answers
6k views
How to change image permission mode to 777 using Java code?
I want to give permissions mode value "777" to image file using Java code. How can I give that using Java? Because I can't delete the image with default permission mode "664".
