 | | From: | cs83736 at yahoo.com | | Subject: | very basic question - need help | | Date: | 23 Jan 2005 10:42:01 -0800 |
|
|
 | I'm pretty new to programming. I want to know how you build a free standing program with an interface that can run by itself - like an ..exe file or something of that nature. I took a year course in java but i still don't know how to do that kind of stuff. what kind of programming do i need to learn to be able to do this?
|
|
 | | From: | Alf P. Steinbach | | Subject: | Re: very basic question - need help | | Date: | Sun, 23 Jan 2005 18:45:14 GMT |
|
|
 | * cs83736@yahoo.com: > I'm pretty new to programming. I want to know how you build a free > standing program with an interface that can run by itself - like an > .exe file or something of that nature. I took a year course in java > but i still don't know how to do that kind of stuff. what kind of > programming do i need to learn to be able to do this?
With Java package your program in a .jar file.
-- A: Because it messes up the order in which people normally read text. Q: Why is it such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail?
|
|
 | | From: | Percival | | Subject: | Re: very basic question - need help | | Date: | Sun, 23 Jan 2005 20:18:14 -0500 |
|
|
 | On Sun, 23 Jan 2005 10:42:01 -0800, cs83736 wrote:
> I'm pretty new to programming. I want to know how you build a free > standing program with an interface that can run by itself - like an > .exe file or something of that nature. I took a year course in java > but i still don't know how to do that kind of stuff. what kind of > programming do i need to learn to be able to do this?
Java does not do .exe files very well.
..exe is specific to windows. If it is to run on Linux, or Macs, it has to be different. Thus, you loose many of the Java advantages if you choose to make .exe files. So don't bother.
C/C++ and other languages can be compiled to .exe.
BTW, this issue is deeper than it seems. I'll just leave it here though.
Percival
|
|