package PostTest; import javax.swing.JFrame; /** * Aceasta programa demostreaza folosirea clasei URLConnection pentru a face POST pe sait * @author Dan * */ public class PostTest { public static void main(String[] args) { JFrame frame = new PostTestFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } }