How to convert java applet code to jar/exe.... code as follows?
-
import java.awt.*; import java.applet.*; import java.awt.event.*; /*<applet code="EventDemo1" width=500 height=500> * </applet> */ public class EventDemo1 extends Applet implements ActionListener { Button b1; Label l1; public void init() { b1=new Button("Display"); l1=new Label(" "); add(b1); add(l1); b1.addActionListener(this); } public void actionPerformed(ActionEvent ae) { l1.setText("Hello World"); } }
-
Answer:
http://viralpatel.net/blogs/2009/02/convert-jar-to-exe-executable-jar-file-to-exe-converting.html
Himanshu at Yahoo! Answers Visit the source
Related Q & A:
- How to Convert Code from VB to C++?Best solution by Stack Overflow
- How to find the embed code for videos on a Website when it doesn't show in the source code?Best solution by Stack Overflow
- How to create a java applet?Best solution by Stack Overflow
- How to convert Matlab .m file to C code?Best solution by mathworks.com
- How to convert a .DMG file into a .EXE?Best solution by answers.yahoo.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.