Home > Archive > Java Help > June 2005 > Questions about Java Executables.
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Questions about Java Executables.
|
|
| CLastGentleman 2005-05-27, 4:02 pm |
| Hi,
How I can create Win Exe from Java Source (GCJ).
If I create a Executable, must installed a Runtime on the client PC,
where the Programm Run.
Sorry for my Bad English.
| |
|
|
| Yu SONG 2005-05-30, 8:58 pm |
| CLastGentleman wrote:
> Hi,
> How I can create Win Exe from Java Source (GCJ).
You need some third party programs (not in the standard Sun distribution)
> If I create a Executable, must installed a Runtime on the client PC,
> where the Programm Run.
>
It should not require JVM, but it may need other dlls.
--
Song
/* E-mail.c */
#define User "Yu.Song"
#define At '@'
#define Warwick "warwick.ac.uk"
int main() {
printf("Yu Song's E-mail: %s%c%s", User, At, Warwick);
return 0;}
Further Info. : http://www.dcs.warwick.ac.uk/~esubbn/
________________________________________
_______________
| |
|
| > CLastGentleman wrote:[color=darkred]
You can try this tool, which allows to do exactly what you need:
http://www.excelsior-usa.com/jet.html
it will automatically define the elements of Run-time needed for your
application and inlude them into your executable.
|
|
|
|
|