Results 1 to 3 of 3

Thread: Java Shortcuts

  1. #1
    Join Date
    Nov 2007
    Location
    USA
    Beans
    167
    Distro
    Ubuntu 16.04 Xenial Xerus

    Java Shortcuts

    alright, i have a simple question (i think ).... i just finished compiling a java application and i got my *.jar. i am able to execute the *.jar with no problem by typing it on the terminal.

    so, how about if i would like to take it to the next level. anybody know how i could create a shortcut for users to just double click instead of going to the terminal and typing it every time?

    i would like to at least create the shortcuts for windows users since they don't have a clue on what the hell they have to do. but, i would like shortcuts for linux, mac, and win users eventually.

    thanx in advance.

  2. #2
    Join Date
    Jul 2008
    Beans
    1,491

    Re: Java Shortcuts

    Quite simply for Win:

    Target: "P:\ath\to\me\file.jar" -optional -program -arguments (Alternatively, use: "C:\path\to\java" -jar "P:\ath\to\me\file.jar" -optional -program -arguments)
    StartIn: "P:\ath\to\me\"

    In Linux you create a .desktop file (look at the files in /usr/share/applications/ to see how it's done, it has rather more elaborate semenatics). Altough typically you would also want to supply a shell script to be dropped in /usr/bin or /usr/local/bin which is what is actually called by executing your desktop file. See the "installing eclipse in hardy" tutorial in these forums for an example -- this allows for easy xterm access to your app.

    In OS X? I dunno, never used that.
    Last edited by Reiger; May 15th, 2009 at 03:42 PM.

  3. #3
    Join Date
    Nov 2007
    Location
    USA
    Beans
    167
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Java Shortcuts

    thnx for your help.

    that worked beautifully!!!

    i knew it was simple

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •