Package javax.microedition.io
Class Connector
- java.lang.Object
-
- javax.microedition.io.Connector
-
public class Connector extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static intREADstatic intREAD_WRITEstatic intWRITE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Connectionopen(String var0)static Connectionopen(String var0, int var1)static Connectionopen(String var0, int var1, boolean var2)static DataInputStreamopenDataInputStream(String var0)static DataOutputStreamopenDataOutputStream(String var0)static InputStreamopenInputStream(String var0)static OutputStreamopenOutputStream(String var0)
-
-
-
Field Detail
-
READ
public static final int READ
- See Also:
- Constant Field Values
-
WRITE
public static final int WRITE
- See Also:
- Constant Field Values
-
READ_WRITE
public static final int READ_WRITE
- See Also:
- Constant Field Values
-
-
Method Detail
-
open
public static Connection open(String var0) throws IOException
- Throws:
IOException
-
open
public static Connection open(String var0, int var1) throws IOException
- Throws:
IOException
-
open
public static Connection open(String var0, int var1, boolean var2) throws IOException
- Throws:
IOException
-
openDataInputStream
public static DataInputStream openDataInputStream(String var0) throws IOException
- Throws:
IOException
-
openDataOutputStream
public static DataOutputStream openDataOutputStream(String var0) throws IOException
- Throws:
IOException
-
openInputStream
public static InputStream openInputStream(String var0) throws IOException
- Throws:
IOException
-
openOutputStream
public static OutputStream openOutputStream(String var0) throws IOException
- Throws:
IOException
-
-