Index: trunk/src/spikes/ShowUserDir.java
===================================================================
--- trunk/src/spikes/ShowUserDir.java	(revision 360)
+++ trunk/src/spikes/ShowUserDir.java	(revision 365)
@@ -2,5 +2,8 @@
 package spikes;
 
+import java.io.File;
 import java.io.FileInputStream;
+import java.net.URL;
+import java.net.URLClassLoader;
 import java.util.Properties;
 import java.util.logging.Level;
@@ -17,7 +20,15 @@
     public ShowUserDir()
     {
+        // This shows the path to where the Jar is located
+        String currpath = getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
+        JOptionPane.showMessageDialog(new JWindow(), 
+                currpath,
+                "Show Jar Path", JOptionPane.INFORMATION_MESSAGE); 
+        // This shows the current working directory, which is different
+        // if you double-click launch in Nautilus from command line launch.
         JOptionPane.showMessageDialog(new JWindow(), 
                 "\nUser.Dir=" + System.getProperty("user.dir"),
-                "Show User Dir", JOptionPane.INFORMATION_MESSAGE);                        
+                "Show User Dir", JOptionPane.INFORMATION_MESSAGE); 
+        
     }   
     public static void main(String[] args)
