• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

NIO Channels Object Transfer

 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
i was trying this test code given below, for transfer of objects thru NIO Channels..
Everything working fine but at the point when i try to create a ObjectOutputStream ...using the SocketChannel ... i get an error saying ::->
java.nio.channels.IllegalBlockingModeException .
i really dont understand why this happens ...
is there any thing wrong that i am doin?.....
Please Help Me ....

Thanks A Lot
regards
Merwin
---------------------------------------------------------------------
HERE is the CODE
---------------------------------------------------------------------

import java.io.*;
import java.net.*;
import java.nio.*;
import java.nio.channels.*;
import java.util.*;

public class DateServerNIO {
static final int port = 1313;

void process() throws IOException {

ServerSocketChannel serverChannel = ServerSocketChannel.open();
serverChannel.socket().bind(new InetSocketAddress(port));
System.out.println("Socket bound");
Selector mux = Selector.open();
serverChannel.configureBlocking(false);
serverChannel.register(mux, SelectionKey.OP_ACCEPT);
System.out.println("Channel registered");

while (mux.select() > 0) {
Iterator keyIt = mux.selectedKeys().iterator();
while (keyIt.hasNext()) {
SelectionKey key = (SelectionKey) keyIt.next();
if (key.isAcceptable()) {
ServerSocketChannel server =(ServerSocketChannel) key.channel();
SocketChannel channel = server.accept();
if (channel != null) {
// channel.configureBlocking(false);
// channel.register (mux, SelectionKey.OP_READ);
ObjectOutputStream dateOut =new OutputStream
(Channels.newOutputStream (channel));
//Here is where the problem comes
dateOut.writeObject(new Date());
}
}
keyIt.remove();
}
}
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
newOutputStream
public static OutputStream newOutputStream(WritableByteChannel ch)Constructs a stream that writes bytes to the given channel.
The write methods of the resulting stream will throw an IllegalBlockingModeException if invoked while the underlying channel is in non-blocking mode. The stream will not be buffered. The stream will be safe for access by multiple concurrent threads. Closing the stream will in turn cause the channel to be closed.


Parameters:
ch - The channel to which bytes will be written
Returns:
A new output stream
 
He loves you so much! And I'm baking the cake! I'm going to put this tiny ad in the cake:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic