View Single Post
  #14   Spotlight this post!  
Unread 01-02-2012, 08:35
derekwhite's Avatar
derekwhite derekwhite is offline
Java Virtual Machine Hacker
no team (FIRST@Oracle)
Team Role: Programmer
 
Join Date: May 2009
Rookie Year: 2009
Location: Burlington, MA
Posts: 127
derekwhite is on a distinguished road
Re: We got Sockets working

Here's one quick example:

Code:
// connect to “echo” server:
SocketConnection sc = (SocketConnection) Connector.open("socket://host.com:79");
InputStream is = sc.openInputStream();
OutputStream os = sc.openOutputStream();

os.write("Hello\r\n".getBytes()); 
int ch = 0; 
while(ch != -1) {
   ch = is.read(); 
}
sc.close();
Reply With Quote