I have java application which I need to invoke during startup. Please give me your suggestions on how to proceed on this.
|
closed as not a real question by Andrzej Doyle, ControlAltDel, Alex K., Robert Harvey♦ Jun 20 '12 at 21:07
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If you are running windows you need to make a record in a registry. Just write This will work only in windows. How to automatically create this record from Java I don't know.. |
|||
|
|
|
You need to detect platform! On Windows write a batch file that invokes your .jar. I believe you place it in On OS X you need to make a .plist (google it) in On *nix append a line to invoke your jar to the X11 script that runs at login (don't remember it's name or location). No idea how on Solaris though... |
|||
|
|