String[] cmd = { "ln" "s" ,"sourcePath " ,"destPath" };
try{
Runtime.getRuntime().exec(cmd);
}
catch(IOException y){
System.out.println("Error"+y.getMessage())
I have created a Shortcut using the above code in Mac.
I need to change the default icon of shortcut created .I need to do it using
Java.
Thanks
Lucky