Table 29 Network Api Feature/Class Support For Midp - Motorola MOTORAZR maxx V6 Developer's Manual

Java me developer guide
Hide thumbs Also See for MOTORAZR maxx V6:
Table of Contents

Advertisement

Java ME Developer Guide
Chapter 22 - Network APIs
CommConnection interface in the javax.microedition.io pack-
age
Dynamic DNS allocation through DHCP
HttpConnection interface in the javax.microedition.io.package. Supported
HttpsConnection interface in the javaxmicroedition.io.package
SecureConnection interface in the
javax.microedition.io.package
SecurityInfo Interface in the javax.microedition.io.package
UDPDatagramConnection interface in the
javax.microedition.io.package

Table 29 Network API feature/class support for MIDP

Code Sample 8 shows the implementation of Socket Connection:
Socket Connection
import javax.microedition.io.*;
import java.io.*;
import javax.microedition.midlet.*;
...
try {
//open the connection and io streams
sc = (SocketConnection)Connector.open
("socket://www.myserver.com:8080", Connector.READ_WRITE, true);
is = sc[i].openInputStream();
os = sc[i].openOutputStream();
} catch (Exception ex) {
closeAllStreams();
System.out.println("Open Failed: " + ex.getMessage());
}
}
if (os != null && is != null)
{
try
{
os.write(someString.getBytes()); //write some data to server
int bytes_read = 0;
int offset = 0;
int bytes_left = BUFFER_SIZE;
//read data from server until done
DRAFT - Subject to Change
Supported
Supported
Supported
Supported
Supported
Supported
[152/201]

Advertisement

Table of Contents
loading

Table of Contents