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.

learn more… | top users | synonyms

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 ...
5
votes
3answers
2k views

WatchService and SwingWorker: how to do it correctly?

WatchService sounded like an exciting idea ... unfortunately it seems to be as low-level as warned in the tutorial/api plus doesn't really fit into the Swing event model (or I'm missing something ...
3
votes
1answer
4k views

Using JAVA NIO framework in SPRING server

I'm implementing an hybrid server application that mixes a Web-Servlet and a plain Java application. The java application manages thousands of sockets for remote devices, while the Web application ...
13
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 ...
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 ...
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 ...
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 ...
4
votes
4answers
8k views

understanding Java NIO concepts [closed]

Can someone suggest a good book/tutorial to understand Java NIO from the operating system perspective (in comparison with java.io?)
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 ...
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 ...
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
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 ...
7
votes
3answers
3k views

Non-Blocking File IO in Java

I want to write to a named pipe (already created) without blocking on the reader. My reader is another application that may go down. If the reader does go down, I want the writer application to neep ...
6
votes
1answer
2k views

SSL Handshaking Using Self-Signed Certs and SSLEngine (JSSE)

I have been tasked to implement a custom/standalone Java webserver that can process SSL and non-SSL messages on the same port. I have implemented an NIO server and its working quite well for non-SSL ...
2
votes
3answers
4k views

Servlet API implementation using Netty

Has anyone made a Servlet API implementation built on top of Netty? I'm tempted to build my own as I can't google an implementation. http://www.jboss.org/netty/community#nabble-td4752485 ...
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 ...
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 ...
11
votes
4answers
21k 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 ...
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 ...
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. ...
7
votes
5answers
2k views

Is there any Non-blocking IO open source implementation for Scala's actors?

I have quite large files that I need to deal with (500Meg+ zip files). Are there any non-blocking IO open source implementations for Scala's actors?
1
vote
2answers
1k views

Netty Different Pipeline Per UDP Datagram

We've got a server which is already implemented in TCP/IP but we now have a requirement for the protocol to support UDP as well. Each UDP datagram sent contains everything I need to decode so it is a ...
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 ...
3
votes
4answers
4k views

Java: Complete code examples of thread-per-connection blocking IO versus NIO?

Ok, I'm going crazy here. I have been rewriting the NIO code for my server, and running into some real headaches. The bottom line is that getting NIO "right" is very hard. Some people pointed me to ...
5
votes
1answer
2k views

Using Google Protocol Buffers with Java NIO?

I'm currently playing around with java.nio, which I haven't been using for a long time. I use Google Protocol Buffers for serialization and for communication with other parts of my system. Now I can't ...
3
votes
1answer
2k views

Lot of UDP requests lost in UDP server with Netty

I wrote a simple UDP Server with Netty that simply prints out in logs the messages (frames) received. To do that, I created a simple frame decoder decoder and a simple message handler. I also have a ...
2
votes
2answers
1k views

Getting FileSystemException “A required privilege is not held by the client” using Files.createSymbolicLink in Play Framework

I'm trying to use the new Java 7 Files.createSymbolicLink() method within Play! Framework, and I got the following exception: RuntimeException occured : java.nio.file.FileSystemException: ...
8
votes
1answer
706 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 ...
5
votes
2answers
2k views

Non-blocking socket writes in Java versus blocking socket writes

Why would someone prefer blocking writes over non-blocking writes? My understanding is that you would only want blocking write if you want to make sure the other side got the TCP packet once the write ...
3
votes
4answers
2k views

thread is stuck while registering channel with selector in Java NIO server

I have a basic question. Why and how SelectableChannel's register method can be in blocking call. Let me provide a scenario. I have created a Selector object in class Register as follows. private ...
4
votes
1answer
357 views

java.lang.UnsupportedOperationException: 'posix:permissions' not supported as initial attribute on Windows

i am using java7 file api i write a class its workig fine on Ubuntu creating Directories perfectly but when i run same code in windows then it is throwing error Exception in thread "main" ...
4
votes
1answer
880 views

Are FileChannel.force and FileDescriptor.sync both needed?

In Really force file sync/flush in Java, the author writes in the summary of the answers: Use c.force(true) followed by s.getFD().sync() for Java NIO My question is: do you really need both? ...
4
votes
5answers
4k views

java.nio vs new thread for each socket [closed]

I am developping a 1 to many server-client application, which is a small project. Since socket IO is blocking. I am looking for a solution for this. Could anyone tell me what is the good/bad for ...
2
votes
2answers
396 views

ClosedChannelException observered with netty 3.2.7 and 3.3.1 under load

Every thing is working fine when my netty server is not loaded. But under load it starts to fail. Currently I am using all default settings ( have not set any options ). Please suggest if I need to ...
2
votes
1answer
493 views

Has anyone played with NIO pipes to filter / intercept System.out?

As suggested here I would like to do that inside the selector loop. What I would really want is to read contents written to system out inside my selector loop. EDIT1: I coded a complete solution just ...
2
votes
3answers
11k views

BufferedReader for large ByteBuffer?

Is there a way to read a ByteBuffer with a BufferedReader without having to turn it into a String first? I want to read through a fairly large ByteBuffer as lines of text and for performance reasons I ...
1
vote
3answers
331 views

Iterable gzip deflate/inflate in Java

Is there a library for gzip-deflating in terms of ByteBuffers hidden in the Internet? Something which allows us to push raw data then pull deflated data? We have searched for it but found only ...
1
vote
2answers
232 views

DatagramChannel.close() keeps port open on Windows

I'm implementing a Discover process that: Open a UDP socket to listen for broadcast response on a given port Send some requests (and expect later response) Close the UDP socket after a given period ...
1
vote
4answers
736 views

Java: TaskExecutor for Asynchronous Database Writes?

I'm thinking of using Java's TaskExecutor to fire off asynchronous database writes. Understandably threads don't come for free, but assuming I'm using a fixed threadpool size of say 5-10, how is this ...
0
votes
2answers
380 views

Android NIO - java.io.IOException: Value too large for defined data type

I'm trying to write a very large file to another very large file. I'm receiving this error on the filechannel writing line and I'm unsure why. I thought it was because I was going out of the limits of ...
0
votes
2answers
870 views

NIO Pipe throws “Broken Pipe”when I write to the Sink for no reason! How to debug?

I believe I have done everything correctly. I create a pipe, pass the sink to a writer thread, register the source on my selector with OP_READ, start my selector. Everything works but as soon as I ...
0
votes
2answers
1k views

socketchannel.write() becomes very slow when message size is large

In my program using java nio, the socketchannel.write() becomes very slow when it tries to write 10 KB messages consecutively. The measured time for writing a complete 10 KB message is between 160 ms ...
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 ...
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 ...
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 ...
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 ...
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
2answers
12k views

Best way to write String to file using java nio

I need to write(append) huge string to flat file using java nio. The encoding is ISO-8859-1. Currently we are writing as shown below. Is there any better way to do the same ? public void ...
5
votes
2answers
2k views

How should I use AsynchronousServerSocketChannel for accepting connections?

I would like to write an asynchronous server using Java 7 and NIO 2. But how should I use AsynchronousServerSocketChannel? E.g. if I start with: final AsynchronousServerSocketChannel server = ...

1 2 3