Midlet migration to JavaSe
Hello,
How to convert a midlet available microedition/UDPDatagramConnection for applet module? I get error that package does not exist, For example:
import javax.swing.JApplet;
import javax.microedition.io.*;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import java.io.*;
import net.*;
public class InviteMIDlet extends JApplet {
private Display display;
public Form form;
private TextField To;
private Command sendCmd;
private Command exitCmd;
private Command hangupCmd;
private UDPDatagramConnection rtpCon = null;
....
}