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.
0
votes
0answers
88 views
Java ByteArrayOutputStream with nio?
May the following example be implemented by using the java.nio.* package?
DummyClass dummyObject = new DummyClass();
DummyClass dummyObject2 = null;
ByteArrayOutputStream bos = new ...
3
votes
2answers
203 views
What is the fastest way for two JVMs in the same machine to communicate? [closed]
The ones that come to mind are sockets (localhost) and memory-mapped file. Does anyone know what approach would be the best for a low-latency application?
@trashgod I am looking for latency in ...
1
vote
3answers
91 views
404 Not Found page displayed when accessing a lot of the Apache MINA links [closed]
I have to embed a network layer into my Java application in order to enable file transfer from a server to multiple client connections.
Having come to the conclusion that Java NIO would be the best ...
0
votes
1answer
79 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 = ...
1
vote
3answers
48 views
Input Output using java [closed]
If we open a file with my java application and open the same file with another application
and made some changes. The java application I made, should know it immedeately that this file
is changed by ...
0
votes
2answers
342 views
Apache Mina Server and client in java.net.Socket
My application send data to Apache Mina Server which listens with the following configuration..
IoAcceptor acceptor = new NioSocketAcceptor();
acceptor.getFilterChain().addLast( ...
0
votes
1answer
47 views
How to deserialize a Serializable object from AsynchronousSocketChannel
To perform a deserialization, I need an ObjectInputStream. But we just use the AsynchronousSocketChannel, which cannot be converted to an ObjectInputStream. What can I do?
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 ...
2
votes
1answer
121 views
ActiveMQ NIO configuration
I am exploring the option of switching from tcp to nio in ActiveMQ.
The documentation gives an example of this, in which only the scheme of the URI is changed in the broker's xml configuration:
...
1
vote
1answer
1k views
Read and Write Int using ByteBuffer in Java NIO
I want to transmit an int array over a network using Datagram Channel in Java NIO API. However, the functions read/write can only take a ByteBuffer as an input. So I need to store the int data to a ...
2
votes
2answers
449 views
Port Unreachable when using Datagram Channel
While using Datagram Channel I get a PortUnreachableException. This is what my Codes look like :
This is the sender side
//Open a non-blocking socket to send data to Receiver
DatagramChannel channel ...
0
votes
1answer
339 views
java asynchronous socket channel/completion handler
According to this post: http://stackoverflow.com/questions/6666659/threading-implications-of-asynchronousbytechannel the java implementation of asynchronous socket channel doesn't guarantee that ...
0
votes
2answers
333 views
Java NIO connect to socket
I'm trying to connect to a remote server and send a login message in my Thread:
@Override
public void run() {
try {
address = new InetSocketAddress(host, port);
...
-3
votes
1answer
96 views
Java selector.select() blocking thread?
I'm trying to run a NIO Server in it's own Thread.
In my run function I defined:
while(running)
{
System.out.println("Server running!");
try
{
this.selector.select();
}
catch ...
0
votes
0answers
278 views
Tomcat 7 NIO & CometProcessor
I was trying to implement Tomcat 7 NIO connector and comet servlet. when i tried to run 100 concurrent users thru JMeter, the request is blocking at some time like on 88 or 97 or 98 requests. I am not ...
0
votes
1answer
128 views
Java NIO Thread selector.select() Nullpointer [closed]
I'm trying to implement a Java NIO Server in its own thread.
public class MyServer extends MyThread
{
ServerSocketChannel server;
Selector selector;
public MyServer
{
super();
...
24
votes
2answers
930 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 ...
0
votes
3answers
388 views
Use java to modify file contents in place
I need to modify specific contents of a file in-place.
I do not want to create a new file and rewrite the old. Also the files are small just a couple MB each the max.
For those wondering (although I ...
2
votes
1answer
129 views
Netty - using the same channelFactory cause only 3 responses to be handled
I was assigned to create an HTTP client based on Netty, but I'm having some difficulties and I hoped there an answer for me.
Well, to use NIO to its full advantage I wanted to use the same ...
1
vote
1answer
196 views
Java get filename of download from redirected 'friendly' url
I'm trying to download a file from a given URL which may or may not be a direct link to the file. Does anyone know how I can detect the filename to write to if the URL is an indirect link (i.e ...
-2
votes
1answer
439 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 ...
3
votes
0answers
105 views
Asynchronous InetSocketAddress Equivalent?
I need an equivalent to java.net.InetSocketAddress that can resolve the host name asynchronously. I'm developing a polling program that must resolve and connect to over 25,000 servers every five ...
1
vote
0answers
27 views
Channel.read returns -2
I'm using Java NIO to do socket operations. In the past when working with streams, the read call (where you are reading into a byte array, or in this case a ByteBuffer) returns the number of bytes ...
0
votes
0answers
46 views
Which exceptions may be passed to CompletionHandler?
After I invoke AsynchronousSocketChannel.read or AsynchronousSocketChannel.write, CompletionHandler.failed may be triggered. Where can I find a complete list of exceptions which will be passed to ...
0
votes
0answers
121 views
Java NIO selector for incoming connections and selector for incoming messages
i'm trying to use NIO to build an efficient Socket TCP/IP server.
i have the main thread which accept connection and then add it to another thread which supposed to wait for messages from client and ...
0
votes
1answer
221 views
NIO Server/Client sending image problems
Hey guys i have been trying to make a NIO server/client program.
My problem is that the server only sends 14 bytes then it won't send anything more. I've sat so long with this that i really can't see ...
3
votes
1answer
96 views
Stop Watching A Directory for Changes (cleanup)
I implemented a directory watcher following the java tutorial: https://blogs.oracle.com/thejavatutorials/entry/watching_a_directory_for_changes
I have it on a separate thread that updates a JList. ...
1
vote
1answer
147 views
Java NIO on Android: Attempting to READ/WRITE while connection is still pending?
This question regards Java's NIO on Android (2.2, though I can build for higher APIs if necessary): After performing a SocketChannel connect() to a destination IP address, I register my channel for a ...
0
votes
1answer
73 views
Using java nio in java ee
I want to use java nio in java ee.
But I don't know how to do it right.
I need to after server has deploy java.nio.selector always listens the port and processing socket connection.
I try do it there:
...
0
votes
0answers
463 views
NIO non-blocking socketChannel. Data was not received on the other side
I have a very strange behaviour during writing to a NIO socket.
In my mobile client I'm using a NIO socketChannel which is configured as follows:
InetSocketAddress address = new ...
6
votes
1answer
194 views
Reliable/persistent outbound sockets needed, options?
I have a Scala application which maintains (or tries to) TCP connections to various servers for hours (possibly > 24) at a time. Each server sends a short, ~30 character message about twice a second. ...
2
votes
1answer
343 views
Fast writing: Memory-Mapped file versus BufferedWriter
Has anyone benchmarked this? I want to write as fast as possible to disk, minimizing the latency of my write calls. I wonder if writing to a memory mapped buffer (through buffer.put()) is faster than ...
-1
votes
1answer
286 views
Java NIO or Java IO for high performance server [closed]
I have been struggling for a while choosing between java NIO, or the old java i/o blocking sockets, for a server i am developing.
I was thinking that java NIO would be better, because it will have a ...
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 ...
3
votes
1answer
177 views
Does FileChannel.close() close the underlying stream?
Like the title; Does closing a FileChannel close the underlying file stream?
From the AbstractInterruptibleChannel.close() API docs you can read:
Closes this channel.
If the channel has ...
0
votes
0answers
60 views
Netty: detect whether sent data was received by client [duplicate]
Possible Duplicate:
How to get an acknowledgement for the client socket from server?
I have implemented a comet message server using netty which keeps connections open for a long time. It ...
1
vote
1answer
177 views
Getting java.nio.channels.CancelledKeyException without explicit cancellation of the key
I have been getting Getting java.nio.channels.CancelledKeyException thrown from:
at sun.nio.ch.SelectionKeyImpl.ensureValid(SelectionKeyImpl.java:55)
at ...
0
votes
1answer
211 views
Using a Java WatchService to monitor folders within folders
I'm trying out WatchService with Java 7, to monitor a folder. I want it to monitor any files or folders being added to the path registered with the WatchService.
If I add a folder to the registered ...
5
votes
3answers
259 views
how to choose java nio vs io?
As we had known, If we want to use traditional IO to construct server, it must block somewhere, so we had to use loop or one thread one socket mode, So nio seem it is better choice. So I want know if ...
0
votes
2answers
195 views
why client can not receive message from server (java)
I have just started learning java. I modified the client side code for a server/client communication program, by creating two threads for the client side, main thread for receiving user's input, and ...
2
votes
3answers
493 views
NIO Selector: How to properly register new channel while selecting
I have a subclassed Thread with a private Selector and a public register(SelectableChannel channel, ...) method that allows other threads to register channels to the selector.
As answered here, the ...
1
vote
1answer
582 views
netty http request getContent sometime give a headers in body
I'm using netty in client mode using ClientBootstrap. When i'm trying to recieve a message most times it works fine and return me only a body, but sometimes( the server always return same response) i ...
0
votes
1answer
64 views
polling between sockets and stdin in java
I have to write a p2p program that has to act as both the client and the server. The program has to listen to both incoming connections(acts as server) and wait for the user input(acts as client). I ...
3
votes
3answers
414 views
How to convert a filepath to valid file path in Java 1.7
Using Java 1.6 Filepath can be entered by user and then I apply various regular expressions to remove characters that are invalid for the platform (such as '?' is invalid on Windows), and check path ...
0
votes
0answers
155 views
Enable JBoss 7 to use org.apache.coyote.http11.Http11NioProtocol
Recently I have been reading a lot about COMET technology and wanted to implement it in my environment. But I came around an issue: Jboss web does not support ...
0
votes
1answer
125 views
A query in JAVA NIO Selector?
I am developing a peer to peer application.
in that each peer has one server socket channel and a socket channel,..
Now i need two selectors to handle the connection for server socket channel and ...
1
vote
2answers
45 views
Does a call to java.lang.Readable.read block?
I am implementing a facility that uses generic reading interface. I am using java.lang.Readable interface which uses CharBuffer to write out the data to.
What it doesn't say is whether the read call ...
3
votes
2answers
234 views
java.nio.file.Files.isWriteable doesn't agree with java.io.File.canWrite()
I have Java code doing the following:
Create a temporary empty file with ZIP extension using File.createTempFile()
Delete it with File.delete() (we only really wanted it to generate a temp file ...
2
votes
2answers
163 views
When working with ByteBuffers on Intel, when should I choose Little Endian versus Big Endian?
I heard that Intel uses little endian architecture, so giving byte buffers in little endian for the CPU is better/faster. I have also heard that the network works with big endian.
So can someone ...
2
votes
3answers
147 views
Is there a performance advantage in writing a long file sequentially using MappedByteBuffer over a plain FileChannel?
I am trying to understand what would be the difference between calling FileChannel.write in short successions with a 16k buffer AND mapping multiple ByteBuffers with an append size of 16k as described ...
