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

0
votes
0answers
17 views

Java NIO: Object serialization

I'm trying to send a serialized object from a NIO client to a NIO server, but I don't know how to get the serialized object into the ByteBuffer. Some further questions: How do I choose the right ...
0
votes
0answers
8 views

Use NIO with Image IO or Thumbnailator

I am planning to use Thumbnailator to generate thumbnails for large size (0.5-10MB) images. I looked through their code and found that ImageIO is being used to create thumbnails. I am a newbie to ...
1
vote
1answer
22 views

Unexpected behavior of tcp server: why adding delay increases ability to service clients?

Good day everybody! My question is about NIO based server and my situation is the following: server reads messages from 100 clients (100 client threads) which send 100 messages each. So, total ...
0
votes
2answers
42 views

Convert long to “unsigned, 4 byte integer in network byte order” with ByteBuffer

The protocol I'm using requires sending back the current position in a file as a "unsigned, 4 byte integer in network byte order". There are several questions on this, but they are assuming I'm using ...
0
votes
1answer
27 views

Netty dynamic pipeline configuration

This may be a "newb" question but here it goes anyway. We have a netty server up and running and we want it to support multiple different protocols like straight tcp, http, udp etc.. I am trying to ...
-1
votes
1answer
19 views

Java.nio fails to write to directory that executing user actually has write permission to [closed]

Sorry folks, completely irrelevant question since the mistake was somewhere else.
-1
votes
0answers
22 views

How to trigger ENTRY_MODIFY. Java

So basically for the following code related to topic "Watching directory": for(WatchEvent<?> event : kC.pollEvents()) { switch(event.kind().name()){ case "OVERFLOW": ...
0
votes
2answers
36 views

How to use NIO to write InputStream to File?

I am using following way to write InputStream to File: private void writeToFile(InputStream stream) throws IOException { String filePath = "C:\\Test.jpg"; FileChannel outChannel = new ...
0
votes
1answer
41 views

Java NIO Http client requests with thread pools

Thread Pool Executor uses number of threads for Future Task. It assigns at least one thread until run() or call() returns. So, I am confused on how to use Thread Pool for JAVA NIO HTTP requests. 1) ...
0
votes
1answer
19 views

netty fireWriteComplete actually nothing written to remote

netty 3.x, nio model: the netty IO writing thread will invoke WritableByteChannel.write(ByteBuffer) finally,netty will consider it written successfuly,but actually the bytes are written to a socket ...
0
votes
2answers
35 views

SelectionKey iterator.remove() throws UnsupportedOperationException and infinite loop

I have a method that opens a connection, queries a site, gets the number of pages and then uses NIO to concurrently retrieve all of the pages. The first query is done using URLConnection and works ...
-3
votes
1answer
20 views

Difference between SKIP_SIBLINGS and SKIP_SUBTREE [closed]

Is anybody aware of the difference between these two FileVisitResult? Directly from this oracle tutorial: SKIP_SUBTREE – When preVisitDirectory returns this value, the specified directory and ...
1
vote
0answers
33 views

About resolve method of the java.nio.Path

I thoroughly understand the use of resolve(path) and relativize(path). In the following snippet though there is something which is not very clear to me: public FileVisitResult preVisitDirectory(Path ...
-6
votes
0answers
41 views

Real example of using FileLock and FileWriter in java [closed]

I need an example of code (no need references to books, javadoc or articles plz) gain a lock on file (using FileLock) write to file there "123", fileWriter.write("123") release the lock close a ...
0
votes
1answer
13 views

Is FileVisitOption.FOLLOW_LINKS the only FileVisitOption available?

I see that the only constant available is FOLLOW_LINKS. On the other hand there is the method FileVisitOption.values() which returns an array of FileVisitOption values. I wonder, if it only has ...
-2
votes
1answer
50 views

Writing to the text file using FileLock (nio) [closed]

I want write some text to text file, locking it from another threads (edit: processes): EDIT: If file clocked, there is special flag as I understand that says: "do not bother me", in order ...
1
vote
1answer
48 views

Can I have a more example of FileAttribute?

Basically in the Files.createFile(Path fileName, FileAttribute<?>... attrs ); there is the possibility to insert a series of attributes. I am aware of the following possibility: Path path = ...
0
votes
1answer
24 views

StandardOpenOption for directories and files. Files.create..()

Why the StandardOpenOption parameter is not present at all in the parameter list of this method: Files.createDirectory(path, FileAttribute<?>)? I am talking about the same StandardOpenOption ...
-1
votes
1answer
35 views

java.nio.channels.Selector.select() returns zero

I'm trying to find out, why the selector does not work. Here is the code: //SocketChannel ch //java.nio.channels.Selector impl //Object session SelectionKey sk = ch.register(impl, 0x01, session); int ...
0
votes
1answer
29 views

FileChannel vs RandomAccessFile [closed]

Considering that FileChannel in Java 7 implements the interface SeekableByteChannel. Is there any use in using RandomAccessFile rather than FileChannel? Thanks in advance.
0
votes
1answer
30 views

Casting a SeekableByteChannel to a FileChannel

Directly from this oracle java tutorial: The following code snippet opens a file for both reading and writing by using one of the newByteChannel methods. The SeekableByteChannel that is ...
1
vote
1answer
43 views

What does “copy ByteBuffer” stand for in the following snippet?

Directly from this oracle tutorial, it's a bit explaining how to use the random access capabilities in java. The snippet is the following: String s = "I was here!\n"; byte data[] = s.getBytes(); ...
1
vote
1answer
26 views

FileChannel.open() vs RandomAccessFile in Jdk 7

I would like to know the difference between the following: FileChannel fc = FileChannel.open(); RandomAccessFile ra = new RandomAccessFile("RandomFile","rw); Since Java 7 the class FileChannel ...
2
votes
1answer
18 views

Nio bytebuffers (by channel) against IO BufferInputStream

Which of the two would be the best choice and in which circumstance? Clearly there is no sense in using a file channel for a very small file. Besides that, what are the pro and cons of the two ...
0
votes
2answers
21 views

Byte [] used as a BufferInputStream ok but

Ok I know a buffer is actually an array of byte, however I have never seen the following declaration (taken from here) URLConnection con = new URL("http://maps...").openConnection(); InputStream is = ...
0
votes
1answer
16 views

Oracle snippet does not give back results

Here I have the following bit of code taken from this oracle java tutorial: // Defaults to READ try (SeekableByteChannel sbc = Files.newByteChannel(file)) { ByteBuffer buf = ...
0
votes
1answer
30 views

RandomAccessFile vs FileChannel.open(path);

What kind of FileChannel object does the FileChannel.open(path) method return? Is it still random access allowed as if it was as following? RandomAccessFile ra = new ...
0
votes
1answer
34 views

difference between bytebuffer.flip() and bytebuffer.rewind()

I am aware that flip() set the current buffer position to 0 and set the limit to the previous buffer position whereas rewind() just set the current buffer position to 0. In the following code, either ...
1
vote
1answer
20 views

RandomaAccessFile, what is actually random?

Having read this oracle java link I would like to know what the writers of this class exactly meant by the term "Random", if the buffer has its own position, limit, capacity indicators. What would be ...
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
1answer
53 views

How to pass data between Channels in netty?

I am writing a simple routing application. The idea is that I have servers or source nodes that receive transient clients connections that last for a period of x time. The messages received are ...
0
votes
2answers
14 views

Sequentally Channel Write Sends Corrupted Data in Java.NIO

I have a Server that uses non blocking sockets, nio. Server works in a separate thread and there is another thread called Game. Game thread holds the server object and uses server.sendMessage, Server ...
2
votes
0answers
13 views

What is wrong with my MINA message? Going over a NioSocketConnector and failing, causing MINA to stop

I have a NioSocketConnector, and have successfully gotten the IoSession. I can write test messages ("abcdef", "|", "(asdfb)", "1234567890", etc.) My "real" messages error and cause the connection to ...
2
votes
1answer
89 views

Why my non blocking Java server refuses client connections?

Good day everybody! I'm developing NIO based server and I'm trying to test it with simple client programm. Before posting code I would like to briefly describe problem: in the test case where server ...
0
votes
1answer
36 views

Joining multiple groups does not work with Netty 3.6.5.Final on SuSe Linux and JDK7

I'm implementing a UDP server using Netty 3.6.5.Final and JDK7 (Nio.2) on Suse Linux and I've run up against the wall. The problem specifically deals with the differences in binding to the wildcard ...
0
votes
0answers
34 views

nio Datagram read block in android api 10

This code works fine on donut (api 4) and Jelly beans ( api 17), but it stucks on GINGERBREAD (api 10), when it comes to sock.read(bb); No exceptions are thrown. I can't figure out what's wrong with ...
0
votes
1answer
23 views

Does NIO deliver advantages even on consuming small serialized Stream from /dev/shm?

E.g. There is some app (outside of my src control) that produces thousands and thousands of serialized Map instances stored as /dev/shm/{some Map-ID}.ser . They are serialized using the plain old ...
5
votes
2answers
51 views

Why is NIO.2 FileVisitor type generic?

I'm doing some research on Java NIO.2 and its file operations, and currently I'm playing with filetree-walking functions and classes. NIO.2 FileVisitor API is wonderful, it's a shame that such thing ...
0
votes
1answer
59 views

Android: Selector.select() returns 0 immediately

I'm writing an Android app (>= 2.3) that connects to a server, and I have a problem with the NIO selector. Selector selector = SelectorProvider.provider().openSelector(); SocketChannel ...
0
votes
0answers
78 views

NIO and p2p, all in one thread, connection not finished

I'm learning from the following code in using selectors and nio http://rox-xmlrpc.sourceforge.net/niotut/ This creates a server and a client program. However I want it all to happen in one thread and ...
0
votes
0answers
25 views

This method does not give me back rootfs?

So basically I would like to know why the following snippet does not give me back the rootfs partition. FileSystem fs = FileSystems.getDefault(); for (FileStore store : fs.getFileStores()) { ...
0
votes
0answers
26 views

async url getter using SocketChannel with one thread only

so, i'm trying to write http url getter which operates in one worker thread only, the idea is to use Selector & SocketChannel. but since i didn't use these classes before i have some doubts. ...
0
votes
1answer
55 views

Timeout on connect to socket using NIO SocketChannel

We have a class that is talking to another HOST over a socket and it looks like this: SocketChannel sc = SocketChannel.open(new InetSocketAddress(HOST, PORT)); sc.configureBlocking(true); ... ...
0
votes
1answer
60 views

Exception when moving files

I'm assuming that this has to do with my limited knowledge of how the FileVisitor works and parses the directories. What I'm trying to do is to move the contents of a directory into another directory. ...
0
votes
1answer
12 views

What's the difference between getUsableSpace and getUnallocatedSpace of FileStore class

I've read definition on documentation and performen some search on web ... but is's still not clear to me. What's the difference between getUsableSpace and getUnallocatedSpace of FileStore class?
0
votes
1answer
19 views

NIO byte Buffer has empty bytes when ready to read

I am writing an NIO server, right now to test I am connecting to myself, i have it written to where the client sends a handshake protocol and the server has to respond but when i try to read the ...
0
votes
1answer
52 views

Java non-blocking IO: Is it possible to check how much you can write before calling channel.write()?

I understand a channel.write(outBuffer) can fail to write all the contents of outBuffer because the underlying socket buffer is full. Then you have to register OP_WRITE and wait for selector ...
2
votes
1answer
99 views

Java MulticastSocket with datagram source defined

I am trying to subscribe to a particular market data feed, distributed by multicast via FAST protocol. In Java, there is MulticastSocket and there is DatagramChannel supporting multicast. The FAST ...
1
vote
0answers
61 views

Is there a way to access NFS (v3 or v4) shares using Java?

we're working on a project where we need access to some NFS shares. Our clients use Windows, Linux and OS X, though we don't want to mount those shares, but instead simply access it for example via ...
1
vote
1answer
22 views

How can I convert WatchService into a Runnable?

I have a watch service that monitors a directory for ENTRY_DELETE,ENTRY_CREATE and ENTRY_MODIFY events and performs logic based upon the event. I need the service to watch the directory for all ...

1 2 3 4 5 20