0
votes
2answers
69 views
Java SocketChannel Eating my bytes
Hi,
I created a SocketChannel to a remote server to send and receive messages on Tomcat. To receive messages from a remote computer, I used a thread dedicated to task (only this t …
5
votes
6answers
1k 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 …
1
vote
2answers
127 views
Java NIO framework for filesystems instead of networks?
There are several high quality frameworks that hide the complexity of NIO based network programming (mina, netty, grizzly, etc.). Are there similar frameworks that simplify NIO ba …
0
votes
1answer
28 views
SSL and NIO Non-blocking Sockets
How do you recommend making a highly scalable SSL client?
Currently, I'm using plain Sockets to connect to the Apple APNS server which requires a non-HTTP SSL sockets. I consider …
3
votes
3answers
73 views
NIO file channel transfer problem on iSeries
Hi all,
I'm having a problem with some Java NIO code running on an iSeries box (JDK 1.5). Basically the code is splitting a file up into chunks part of a file to another smaller f …
1
vote
2answers
57 views
Should I use (non-blocking) NIO for UDP?
According to this post, UDP just doesn't block. Are there any advantage using the (non-blocking) NIO API for UDP? Or should I just use the easier "traditional" io API?
0
votes
3answers
28 views
reusing socket channels
im trying to implement a client app with an asynchronous connection. i want to know if i can reuse a SocketChannel object after it has failed to connect to a server.
SocketChann …
0
votes
3answers
71 views
Java: Generalization possible between: streams, readers, char buffers, stringbuilder, …?
Hello everyone!
Background story:
There are these Source and Result interfaces for XML.
These are adapters between different XML technologies in Java.
Instances of these classes …
1
vote
5answers
309 views
How can I find the byte encoding of a TIBCO Rendezvous message?
In my Java application, I am archiving TIBCO RV messages to a file as bytes.
I am writing a small utility app that will play the messages back. This way I can just create a Tibrv …
0
votes
4answers
276 views
Java NIO FileChannel versus FileOutputstream performance / usefulness
Hello,
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 wr …
0
votes
1answer
50 views
java nio Selector wakeup
Please point/provide me an working example of selector.wakeup(); method between two threads.
I tried to create a simple program where a thread is waiting on selector.select() meth …
1
vote
4answers
80 views
Efficient file transfer from Java server to multiple C++ clients?
I need to transfer files fast over the Internet from a Java server to C++ clients, where often many clients would need the same files. I was looking at say transferTo() in Java wh …
0
votes
2answers
227 views
How Can I create different selectors for accepting new connection in java NIO
I want to write java tcp socket programming using java NIO. Its working fine. But I am using the same selector for accepting reading from and writing to the clients.
How Can I cre …
1
vote
1answer
80 views
java.nio.BufferUnderflowException when processing files in Scala
I got a similar problem to this guy while processing 4MB log file. Actually I'm processing multiple files simultaneously but since I keep getting this exception, I decide to just t …
1
vote
3answers
272 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 …
