Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have java application which I need to invoke during startup. Please give me your suggestions on how to proceed on this.

share|improve this question
8  
platform details are necessary to answer your question. What system are you running on? linux? windows? – pb2q Jun 19 '12 at 16:44
Is it an exe file? – Morpheus Jun 19 '12 at 16:44
You have to write some kind of shell script to invoke the program on startup or on a timed task or something – user12345613 Jun 19 '12 at 16:44
You could register it as a windows service, check this question stackoverflow.com/questions/68113/… – PTBG Jun 19 '12 at 16:45
Possible duplicate.... – PrimosK Jun 19 '12 at 16:45
show 1 more comment

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.

2 Answers

If you are running windows you need to make a record in a registry. Just write java -jar <your program> like in console. See an exapmle for running notepad.exe: running notepad at startup

This will work only in windows. How to automatically create this record from Java I don't know..

share|improve this answer

You need to detect platform!

On Windows write a batch file that invokes your .jar. I believe you place it in System.getProperty(user.home) + File.pathSeparator + "StartMenu" + File.pathSeparator + "All Programs" + File.pathSeparator + "Startup"

On OS X you need to make a .plist (google it) in System.getProperty(user.home) + File.pathSeparator + "Library" + File.pathSeparator + "LaunchAgents"

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...

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.