Somehow this question sounds like asking for a wrong way to do it. Why don't you start the jar from where it is - java -jar /path/to/the/jar.jar or java -cp /path/the/jar.jar mainpackage.MainClass
On Linux, the startup-dir - the dir, where you normally start , if you open a shell - is your $HOME, alias /home/$USER, or just the current directory . or $(pwd) or $PWD from there.
cp JARFILE $PWD
would therefore copy the jar to the current dir, if nobody changed the starting dir.
However, if you place a starter on the desktop, that might choose $HOME/Desktop as the startup-dir.
On Linux, there is no official startup-dir; nobody uses this expression.
We're talking about autostart?
If you want to run a program on the server, /etc/init.d might be the right place to put your program, or better a starting script for your program, which would go to /usr/local/... or /opt/ or /var, depending on Linux flavour and user preferences.
If your program needs X (uses awt/swing/swt) it will need to wait for X to come up, then /etc/X11/Xsession.d would be the place to put the startscript.
Depending on resources it needs to run, there would be further considerations.
If it uses networking resources, and actions should be taken, depending on network start or shutdown, or on powermanagement, there are again different directories, to look for.
According with Stephen C., if you don't have any experience with Linux, you should give us much more information. What does your program do? Can we see it? Is it OpenSource? Which computer resources does it use? Client or server? GUI or console? Run by whom?
autostart-dir? – user unknown Aug 21 '11 at 6:01