4

I need to know the Jar Exporting Shortcut Key in Eclipse to destination.I don't know if it is possible or not.

I am export jar file now Right click on Project folder and select export then select JAR like this way.But i feel to difficult every day using like this.

So Can you please suggest me any shortcut key for export jar file in eclipse.

Venkat
  • 841
  • 15
  • 31
  • 1
    That export wizard has an option to save the process as an Ant script, I think. You make that and run it. Do that once, and it should appear as a Run button entry. – Thilo Jul 16 '14 at 06:09
  • 2
    possible duplicate of [Eclipse: Is there a way to quickly export JARs](http://stackoverflow.com/questions/17688134/eclipse-is-there-a-way-to-quickly-export-jars) – janos Jul 16 '14 at 06:10

1 Answers1

6

At present, there is no predefined keyboard shortcut for exporting Jar.

Solution

Add a custom shortcut in Windows->Preferences->General->Keys by defining a Custom key binding

All the Eclipse commands and their associated shortcut keys are displayed here. You can use the predefined ones or assign/change new shortcuts here.

enter image description here

After assigning the shortcut, it will show the user defined key binding.
For me it shows my custom combination Ctrl + Alt + R as follows:

enter image description here

Infinite Recursion
  • 6,511
  • 28
  • 39
  • 51