Given the MIDlet code: 7. String s = System.getProperty("microedition.configuration"); 8. if (!s.equals("CLDC-1.1")) { 9. s = "CLDC-1.1"; 10. } 11. System.setProperty(s); Which statement is true?
-
A
SecurityException is thrown at runtime.
-
B
Property is set to "CLDC-1.1."
-
C
Compilation fails because of an error in line 11.
-
D
Compilation fails because of an error in line 7.
Reveal answer details
Close answer details
Click the Exhibit button. What is visible on the display when this MIDlet is executed?  examollectionvce.com Leaders in IT Certification 43 
-
A
A white screen is shown momentarily, and then a black screen is shown.
-
B
A java.lang.RuntimeException is thrown.
-
C
The screen continuously switches back and forth between black and white.
-
D
A black screen is shown momentarily, and then a white screen is shown.
Reveal answer details
Close answer details
Given: MIDlet Suite A public class Person public class Address MIDlet Suite B public class Person Which is true?
-
A
Person in MIDlet Suite B is allowed access to Address class in MIDlet Suite A based on the protection domain.
-
B
Person in MIDlet Suite B is allowed restricted access to the Address class in MIDlet Suite A.
-
C
Person in MIDlet Suite B is NOT allowed access to the Address class defined in MIDlet Suite A.
-
D
Person in MIDlet Suite B is allowed access to the Address class defined in MIDlet Suite A.
Reveal answer details
Close answer details
obscure is a content type unsupported on a device that executes: 10. String locator = "http://foobar.sun.com/content.obscure"; 11. Player player = Manager.createPlayer(locator); Which is true?
-
A
The file is interpreted as an HTML file.
-
B
An exception is thrown at runtime.
-
C
The file is interpreted as an ASCII file.
-
D
Reveal answer details
Close answer details
Question 5
Multiple choice
Given: 21. MessageConnection mc; 22. mc = (MessageConnection) Connector.open("sms://:6222"); 23. mc.setMessageListener(this); 24. reader = new MsgReader(); 25. new Thread(reader).start(); 26. //... 35. public void notifyIncomingMessage(MessageConnection mc2) { 36. //... 40. } 41. //... 50. class MsgReader implements Runnable { 51. //... 55. } Which two are true? (Choose two.)
-
A
This MIDlet uses asynchronous WMA message handling.
-
B
This MIDlet must have a MIDlet-Push-<n> entry in its JAD file.
-
C
This MIDlet must contain a call to PushRegister.registerConnection().
-
D
This MIDlet uses synchronous WMA message handling.
-
E
This MIDlet typically includes a method call such as: mc.receive().
Reveal answer details
Close answer details
A JTWI device has a working socket implementation. A MIDlet requests permission to use socket connections on this device using the attribute MIDlet-Permissions-Opt, but is denied permission. Given: 20. public void connect() { 21. try { 22. String addr = "socket://host.com:79"; 23. SocketConnection sc; 24. sc = (SocketConnection) Connector.open(addr); 25. sc.setSocketOption(SocketConnection.LINGER, 5); 26. InputStream is = sc.openInputStream(); 27. OutputStream os = sc.openOutputStream(); 28. os.write("\\r\\n".getBytes()); 29. int ch = is.read(); 30. // ... 35. } catch (IOException ioe) { 36. // ... 40. } 41. } Which is true assuming that the argument to Connector.open() points to a valid destination, and the device has resources to create new socket connections?
-
A
The device disallows the MIDlet to be installed.
-
B
If connect() executes, a SecurityException is thrown at runtime at line 26.
-
C
If connect() executes, a SecurityException is thrown at runtime at line 28.
-
D
If connect() executes, a ConnectionNotFoundException is thrown at runtime at line 24.
-
E
If connect() executes, a SecurityException is thrown at runtime at line 24.
Reveal answer details
Close answer details
Click the Exhibit button. Given the GameCanvas code: 10. public void run() { 11. try { 12. Graphics g = getGraphics(); 13. Image dog = Image.createImage("/dog.png"); 14. Sprite s = new Sprite(dog, 98, 88); 15. s.setPosition(0,0); 16. while (gameActive) { 17. s.setFrame(0); 18. s.paint(g); 19. flushGraphics(); 20. s.setFrame(1); 21. s.paint(g); 22. flushGraphics(); 23. } 24. } catch (Exception ex) { 25. //... 31. } 32. } Assuming that gameActive is true, and that run() is called as a result of a new thread's start() invocation, what is the result? 
-
A
An exception is thrown at runtime because of an error with the arguments to the Sprite constructor.
-
B
An IndexOutOfBoundsException occurs due to an error in line 17 or line 20.
-
C
The dog on the left side of the image file appears on the display, but the dog on the right side is never seen.
-
D
Compilation fails because Sprite does NOT have a paint(Graphics g) method.
-
E
An animation appears that continuously cycles between the two versions of the dog.
Reveal answer details
Close answer details
Question 8
Multiple choice
Which three are basic interface types addressed by the Generic Connection Framework? (Choose three.)
-
A
basic serial input connection
-
B
telephony-oriented mechanism
-
C
location-oriented mechanism
-
D
basic serial output connection
-
E
circuit-oriented mechanism
Reveal answer details
Close answer details
Which exception is generated if a user rejects permission to any restricted resource?
-
A
ConnectionNotFoundException
-
B
-
C
-
D
Reveal answer details
Close answer details
Question 10
Multiple choice
Click the Exhibit button. Which two are true assuming this method is in a MIDlet? (Choose two.) 
-
A
Compilation fails due to a problem with code related to event handling.
-
B
An exception occurs at runtime due to a problem related to the event handling code.
-
C
The Chocolate Prefs choice is never displayed to the user.
-
D
The text "You made a choice" is displayed immediately after the user makes a selection.
-
E
Anonymous inner classes must NOT be used as event handlers within a MIDlet.
-
F
The user can select more than one type of chocolate.
Reveal answer details
Close answer details
Question 11
Multiple choice
Which two are true about JTWI devices using SMS? (Choose two.)
-
A
The payload for an SMS message can use the BinaryMessage interface.
-
B
A message which is too big to be sent in a single segment is NOT guaranteed to have its segments arrive at the application in the order in which they were sent.
-
C
Multiple messages sent from point A to point B are NOT guaranteed to be delivered in the order in which they were sent.
-
D
Java applications are restricted to using port numbers between 2000 and 9207.
-
E
The payload for an SMS message segment CANNOT exceed 140 bytes.
Reveal answer details
Close answer details
Question 12
Single choice
Click the Exhibit button. Given: The MIDlet is executed. The MIDlet is paused and resumed two times. What is the result? 
-
A
-
B
An exception is thrown at runtime.
-
C
-
D
-
E
Reveal answer details
Close answer details
Question 13
Multiple choice
A MIDlet has registered a push connection in the PushRegistry and a connection notification is pushed to the device. Which two are true? (Choose two.)
-
A
If the MIDlet is NOT running, the Application Management Software starts the MIDlet.
-
B
If the application is running, it is responsible for all I/O operations associated with the inbound connection.
-
C
The Application Management Software is always responsible for any inbound notification requests.
-
D
Once a connection is registered in the PushRegistry, the Application Management Software is always responsible for any connections.
-
E
If the MIDlet is in the paused state, the Application Management Software is responsible for any inbound notification requests.
Reveal answer details
Close answer details
Question 14
Single choice
Given: MIDlet Suite A public class Person public class Address MIDlet Suite B public class Person Which is true?
-
A
Person in MIDlet Suite B is NOT allowed access to the Address class defined in MIDlet Suite A.
-
B
Person in MIDlet Suite B is allowed access to the Address class defined in MIDlet Suite
-
C
Person in MIDlet Suite B is allowed access to Address class in MIDlet Suite A based on the protection domain.
-
D
Person in MIDlet Suite B is allowed restricted access to the Address class in MIDlet Suite A.
Reveal answer details
Close answer details
Question 15
Single choice
Which is a method of ToneControl?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
DRAG DROP Click the Task button. Place the API label (high-level or low-level) on the code snippet to indicate whether or not the code is from the high-level or low-level API. Assume that all variable names reflect the object type used in the code.  
Reveal answer details
Close answer details
Question 17
Multiple choice
Given the MIDlet code: 11. DatagramConnection dgc = (DatagramConnection)Connector.open("datagram://:444"); 12. Datagram datagram = dgc.newDatagram(20); 13. dgc.receive(datagram); 14. byte[] data = datagram.getData(); 15. String s = new String(data); 16. list.append(s, null); 17. System.out.println("Datagram received: " + s); Which two are true regarding the portability of the code between devices? (Choose two.)
-
A
Installation will fail on devices that do not support datagrams.
-
B
Datagrams may not be supported on all platforms.
-
C
The code is portable because all the classes and interfaces used are defined in the CLDC.
-
D
Port 444 may be restricted or ignored by some MIDP implementations.
Reveal answer details
Close answer details
Question 18
Single choice
-
A
a top-level MIDP 2.0 interface
-
B
a top-level MMAPI interface
-
C
a MIDP 2.0 interface extending the Control interface
-
D
an MMAPI class implementing the Control interface
Reveal answer details
Close answer details
Question 19
Single choice
What is the minimum configuration that JTWI 1.0 requires?
-
A
-
B
-
C
no specific configuration
-
D
Reveal answer details
Close answer details
Question 20
Multiple choice
Which two events can result in the removal of a MIDlet's dynamic push connection registration? (Choose two.)
-
A
Using a call to PushRegistry.removeConnection().
-
B
Using a call to PushRegistry.unregisterConnection().
-
C
Opening the connection using Connector.open().
-
D
Using a call to PushRegistry.registerConnection().
-
E
When MIDlet.destroyApp() is called.
-
F
When the MIDlet is uninstalled.
Reveal answer details
Close answer details
Question 21
Multiple choice
Given: 11. String base = "44"; 12. for(int ccnt=0; ccnt < 5; ccnt++) { 13. try { 14. String temp = base + Integer.toString(ccnt); 15. PushRegistry.registerConnection 16. ("datagram://:" + temp, MIDletName, "*"); 17. break; 18. } catch (IOException x) { 19. continue; 20. } 21. } Which two are true? (Choose two.)
-
A
attempts to reserve a datagram connection for the MIDlet specified by MIDletName, even though the MIDlet may NOT depend on push connections
-
B
attempts a number of times to register a datagram connection for use by the MIDlet specified by MIDletName
-
C
guarantees that at least 1 datagram connection will be registered for use by the MIDlet specified by MIDletName
-
D
registers 5 datagram connections for use by the MIDlet specified in MIDletName
Reveal answer details
Close answer details
Question 22
Multiple choice
Given the MIDlet code: 11. try { 12. while (true) { 13. ServerSocketConnection server = (ServerSocketConnection) 14. Connector.open("socket://:444", Connector.READ, true); 15. SocketConnection conn= (SocketConnection) 16. server.acceptAndOpen(); 17. InputStream is = conn.openInputStream(); 18. StringBuffer buffer = new StringBuffer(); 19. for (int ch = -1; (ch = is.read()) != -1; ){ 20. buffer.append((char)ch); 21. } 22. System.out.println(buffer); 23. } 24. } catch (IOException x) {} Which two are true? (Choose two.)
-
A
The device may run out of connections.
-
B
The call to server.acceptAndOpen() on line 16 returns immediately if there is no activity on the connection.
-
C
An IOException could occur, causing the while loop to terminate.
-
D
The ServerSocketConnection is guaranteed to timeout at line 16 if there is no activity on the connection after a period of time.
Reveal answer details
Close answer details
Question 23
Single choice
When can a MIDlet suite be installed in the untrusted domain?
-
A
when suite is NOT signed with an X.509 PKI certificate
-
B
when suite is authenticated using an X.509 PKI certificate and the certificate is expired
-
C
when suite is authenticated using an X.509 PKI certificate and the certificate is invalid
-
D
when suite is authenticated using an X.509 PKI certificate and the certificate fails signature verification
Reveal answer details
Close answer details
Question 24
Single choice
A MIDlet suite on a device uses socket connections. The device always asks the user for permission when the suite tries opening a socket connection. What is always false about the MIDlet suite?
-
A
It is trusted and requests permission to use sockets with MIDlet-Permissions-User.
-
B
It is trusted and requests permission to use sockets with MIDlet-Permissions.
-
C
-
D
It is trusted and requests permission to use sockets with MIDlet-Permissions-Opt
Reveal answer details
Close answer details
Question 25
Single choice
Which method in Canvas is overridden in GameCanvas?
-
A
-
B
-
C
-
D
flushGraphics(int, int, int, int)
-
E
Reveal answer details
Close answer details
Question 26
Single choice
Given: 10. MessageConnection conn; 11. 12. public void startApp() { 13. try { 14. conn = (MessageConnection) Connector.open("cbs://:3382"); 15. //... 17. } catch (Exception e) { 18. //... 20. } 21. } 22. 30. public void run() { 31. Message msg = conn.receive(); 32. //... 40. conn.send(msg); 41. } What is the result?
-
A
An error at line 40 causes an exception at runtime.
-
B
An error at line 14 causes compile to fail.
-
C
An error at line 31 causes an exception at runtime.
-
D
The code successfully sends a message.
-
E
An error at line 14 causes an exception at runtime.
Reveal answer details
Close answer details
DRAG DROP Click the Task button. Given: 9. Player p = Manager.createPlayer("http://webserver/music.mp3"); 10. p.setLoopCount(5); 11. p.start(); 12. p.stop(); 13. p.close(); What is the order of the states that the Player goes through?  
Reveal answer details
Close answer details
Question 28
Single choice
Assuming an application descriptor contains: MIDlet-Data-Size: 4096 Which is true?
-
A
The device will use 4096 bytes to buffer data the application receives over the network.
-
B
The device will permanently reserve 4096 bytes of heap space for the application.
-
C
The device will permanently reserve 4096 bytes of RMS space for the application.
-
D
The device will use 4096 bytes to buffer data the application sends over the network.
Reveal answer details
Close answer details
Question 29
Multiple choice
Which three classes are subclasses of Item? (Choose three.)
-
A
-
B
-
C
-
D
-
E
-
F
-
G
Reveal answer details
Close answer details
Question 30
Multiple choice
Which three are defined as user interaction permission modes? (Choose three.)
-
A
-
B
-
C
-
D
-
E
Reveal answer details
Close answer details
Question 31
Multiple choice
Which two are true about the javax.wireless.messaging.MessageConnection interface? (Choose two.)
-
A
Threads that are waiting to receive messages must be blocking threads.
-
B
This interface is intended for all wireless messaging protocols.
-
C
When creating a client mode message, a string that identifies an endpoint on the local host should be passed to Connector.open().
-
D
It provides methods to create Connector objects.
-
E
An application can have both client and server mode MessageConnection instances open simultaneously.
Reveal answer details
Close answer details
Question 32
Single choice
Given: 15. String addr = "sms://+14155557296"; 16. MessageConnection conn 17. = (MessageConnection) Connector.open(addr); 18. // insert code here 19. message.setPayloadData(imageBytes); Assume imageBytes is a valid byte array. Which statement, inserted at line 18, causes the rest of the code fragment to compile correctly?
-
A
BinaryMessage message = new BinaryMessage();
-
B
Message message = conn.newMessage(MessageConnection.BINARY_MESSAGE);
-
C
Message message = new BinaryMessage();
-
D
BinaryMessage message = (BinaryMessage) conn.newMessage(MessageConnection.BINARY_MESSAGE);
Reveal answer details
Close answer details
Question 33
Multiple choice
Which two events can result in the removal of a MIDlet's dynamic push connection registration? (Choose two.)
-
A
When MIDlet.destroyApp() is called.
-
B
Opening the connection using Connector.open().
-
C
When the MIDlet is uninstalled.
-
D
Using a call to PushRegistry.unregisterConnection().
-
E
Using a call to PushRegistry.registerConnection().
-
F
Using a call to PushRegistry.removeConnection().
Reveal answer details
Close answer details
Question 34
Single choice
Which is true when using multiple threads to access a record store?
-
A
You must coordinate access to a record store to prevent data corruption.
-
B
The implementation coordinates access, ensuring that record stores will NOT be corrupted.
-
C
You CANNOT access a record store with multiple threads.
-
D
You must lock a record store prior to access.
Reveal answer details
Close answer details
Question 35
Single choice
Which are valid states for an HttpConnection?
-
A
-
B
-
C
-
D
started, paused, destroyed
Reveal answer details
Close answer details
Question 36
Single choice
Given: 14. Canvas canvas; 15. // ... 24. canvas.repaint(10,10,20,20); 25. canvas.serviceRepaints(); What occurs when serviceRepaints() is called?
-
A
The application blocks until the repaint() method returns.
-
B
The application immediately calls the paint() method.
-
C
The application immediately calls the repaint() method.
-
D
The application blocks until the paint() method returns.
Reveal answer details
Close answer details
Question 37
Multiple choice
Click the Exhibit button. The red collision rectangle around each Sprite in the image is NOT part of the actual image. The two Sprite objects intersect in the application precisely as shown. Which two are true? (Choose two.) 
-
A
The most efficient way to detect collision is to use collision detection based solely on the collision rectangles.
-
B
For the two Sprite objects to be considered in collision, collidesWith() must be invoked on both objects.
-
C
If Sprite 1 is being tested for collision with Sprite 2 using pixel-level collision detection, the two Sprite objects will NOT be in collision.
-
D
For the two Sprite objects to be considered in collision, each Sprite must have no more than one frame.
Reveal answer details
Close answer details
Question 38
Single choice
Which interaction generates an application event in a MIDlet that uses only high-level APIs?
-
A
-
B
making a choice in a multiple choice List
-
C
-
D
Reveal answer details
Close answer details
Question 39
Multiple choice
Click the Exhibit button. Which two are true? (Choose two.) 
-
A
In class A, no new events will be delivered to the application until after the commandAction() method completes.
-
B
The event-handling mechanism in class A allows multiple command events to be delivered to the application in parallel.
-
C
The commandAction() method code in class B is compliant with the event-handling approach recommended in the MIDP 2.0 specification.
-
D
The commandAction() method code in class A is NOT guaranteed to be portable across all MIDP 2.0- compliant devices.
-
E
In class B, no new events will be delivered to the application until after the commandAction() method completes.
-
F
The event-handling in class A will NOT print done with action until after the run() method has completed.
Reveal answer details
Close answer details
Question 40
Single choice
Given: 21. TextField tf = new TextField("Memo", "", 50, TextField.ANY); 22. DateField df = new DateField("Date", DateField.DATE_TIME); 23. Form fm = new Form("Form demo"); 24. Command cmCount = new Command("Word count", Command.ITEM, 1); 25. Command cmExit = new Command("Exit", Command.EXIT, 1); 26. 27. tf.addCommand(cmCount); 28. fm.append(df); 29. fm.append(tf); 30. fm.addCommand(cmExit); 31. fm.setCommandListener(this); Which is true?
-
A
An exception is thrown at runtime.
-
B
The cmCount and cmExit commands is always available on fm, regardless of which Item is active.
-
C
-
D
The cmCount command is available only when tf is the active Item.
-
E
The cmExit command is available only when df is the active Item.
Reveal answer details
Close answer details
Question 41
Single choice
What is true when an enumeration applies both a RecordFilter class and RecordComparator class on a record store?
-
A
An enumeration CANNOT apply both a RecordFilter and RecordComparator.
-
B
The records that match the search criteria in RecordFilter will be returned using the ordering defined by RecordComparator.
-
C
All records will always be available as part of the enumeration result set.
-
D
The return order of the result set is undefined.
-
E
The records that match the search criteria in RecordComparator will be returned using the ordering defined by RecordFilter.
Reveal answer details
Close answer details
Question 42
Single choice
Which guarantees the application can be installed without push registration conflicts?
-
A
It is NOT the responsibility of the MIDlet to resolve these conflicts. The installer does this automatically.
-
B
The MIDlet specifies the push registration in the JAD, but will register dynamically if there is a conflict.
-
C
The MIDlet tries to register the connection dynamically after installation.
-
D
The MIDlet specifies multiple push registration strings in the JAD.
Reveal answer details
Close answer details
DRAG DROP Click the Task button. Place the classes and methods in the correct positions.  
Reveal answer details
Close answer details
Question 44
Single choice
Given: a JAR containing a MIDlet named TesterMIDlet a JAD with this content: CertificationExam: Sun Certified Mobile Application DeveloperMIDlet-1: TesterMIDlet, , certification.TesterMIDlet MIDlet-Jar-Size: 2038 MIDlet-Jar-URL: Certification.jar MIDlet-Name: Certification MIDlet-Vendor: A Testing Company MIDlet-Version: 1.0 MicroEdition-Configuration: CLDC-1.0 MicroEdition-Profile: MIDP-2.0 This MIDlet needs to get the property with the key CertificationExam defined in the JAD. This needs to be assigned to a String ExamName from within the MIDlet.startApp() method. What is the correct way to accomplish this?
-
A
String ExamName = System.getProperty("CertificationExam");
-
B
String ExamName = System.getProperty("MIDlet-CertificationExam");
-
C
String ExamName = this.getAppProperty("CertificationExam");
-
D
String ExamName = this.getAppProperty("MIDlet-CertificationExam");
Reveal answer details
Close answer details
Question 45
Single choice
Which is true about the installation status report definition?
-
A
If the installation status report CANNOT be sent, the device must refuse the installation of the MIDlet suite.
-
B
In response to an installation status report, the server must reply with a 200 OK. HTTP acknowledgement response.
-
C
A MIDlet suite CANNOT be removed until the installation notification has been successfully sent and the acknowledgement has been received.
-
D
The only protocols supported for the status report notification are HTTP and UDP.
Reveal answer details
Close answer details
Question 46
Single choice
Given: a JAR containing a MIDlet named TesterMIDlet a JAD with this content: CertificationExam: Sun Certified Mobile Application DeveloperMIDlet-1: TesterMIDlet, , certification.TesterMIDlet MIDlet-Jar- Size: 2038 MIDlet-Jar-URL: Certification.jar MIDlet-Name: Certification MIDlet-Vendor: A Testing Company MIDlet-Version: 1.0 MicroEdition-Configuration: CLDC-1.0 MicroEdition-Profile: MIDP-2.0 This MIDlet needs to get the property with the key CertificationExam defined in the JAD. This needs to be assigned to a String ExamName from within the MIDlet.startApp() method. What is the correct way to accomplish this?
-
A
String ExamName = this.getAppProperty("CertificationExam");
-
B
String ExamName = this.getAppProperty("MIDlet-CertificationExam");
-
C
String ExamName = System.getProperty("CertificationExam");
-
D
String ExamName = System.getProperty("MIDlet-CertificationExam");
Reveal answer details
Close answer details
Question 47
Multiple choice
Which two errors are available in CLDC? (Choose two.)
-
A
java.lang.VirtualMachineError
-
B
java.lang.OutOfMemoryError
-
C
java.lang.StackOverflowError
-
D
Reveal answer details
Close answer details
Question 48
Multiple choice
Given a class named MyCanvas, which three CANNOT be used if MyCanvas is a direct subclass of Canvas? (Choose three.)
-
A
public MyCanvas(boolean t) { super(true); }
-
B
-
C
Sprite s = new Sprite(anImage, 20,20);
-
D
keyStates = getKeyStates(); if ((keyStates & LEFT_PRESSED) != 0) { }
-
E
-
F
gameAction = getGameAction(keyCode) { }
Reveal answer details
Close answer details
Question 49
Single choice
Which is true about WMA's support for Cell Broadcast Service (CBS) messaging?
-
A
CBS uses encoding schemes different from SMS.
-
B
A subscriber can choose topics on which to receive messages.
-
C
A base station can choose to send CBS messages to specific mobile stations.
-
D
The WMA is used to send and receive CBS messages.
Reveal answer details
Close answer details
Question 50
Multiple choice
Which two are true? (Choose two.)
-
A
WMA provides a set of APIs for multimedia content handling.
-
B
The J2SE specification extends the MIDP specification.
-
C
The goal of the CLDC is to guarantee portability and interoperability between various types of resource-constrained devices.
-
D
MIDP 2.0 is a set of APIs that runs on top of the CLDC.
Reveal answer details
Close answer details
Question 51
Single choice
Given: 7. ServerSocketConnection ssc = (ServerSocketConnection)Connector.open("socket://:5999"); 8. SocketConnection sc = (SocketConnection) ssc.acceptAndOpen(); Which entry in the JAD file is used to request multiple permissions?
-
A
MIDlet-Permission: javax.microedition.io.Connector.socket, javax.microedition.io.Connector.serversocket
-
B
MIDlet-Permission: javax.microedition.io.Connector.socket; javax.microedition.io.Connector.serversocket
-
C
MIDlet-Permission: javax.microedition.io.Connector.socket MIDlet-Permission: javax.microedition.io.Connector.serversocket
-
D
MIDlet-Permission: javax.microedition.io.socket MIDlet-Permission: javax.microedition.io.socketserver
-
E
MIDlet-Permission: javax.microedition.io.socket; javax.microedition.serversocket
Reveal answer details
Close answer details
|