How do I run a Eclipse launcher file in IntelliJ I

2019-03-22 22:43发布

问题:

I have a Eclipse .launch file that a developer has created to set up the classpath, vm and program arguments from a XML file that Eclipse uses to launch the program.

I want to be able to run this file in IntelliJ IDEA but is there an automatic way without manually creating the settings?

回答1:

IDEA doesn't support importing Eclipse .launch files.



回答2:

Try the Eclipser plugin

http://plugins.jetbrains.com/plugin?pluginId=7153

Eclipser will automatically convert Eclipse launch configurations into IntelliJ IDEA configurations

However it currently (as of November 2014) supports only very limited number of launch types:

  • local Java application (...)
  • program launch (...)
  • Maven launcher (...)

See https://github.com/kukido/eclipser/wiki for details.



回答3:

Eclipser developer is here. Thanks to @jean-michel-garcia for the answer above. I would like to add that as of today, Eclipser supports the following formats:

  • Local Java application Eclipse launcher
  • Program launch Eclipse launcher
  • Maven launch configuration
  • Remote Java application Eclipse launcher
  • Ant launch configuration

And I'm working on JUnit launch configuration conversion. Give it a try.



回答4:

steps to launch eclipse launcher in intellij

  1. download the plugin
  2. install it in intellij
  3. restart intellij
  4. right click .launch
  5. click "convert with eclipser"
  6. check run/debug configurations, an new application process should be added
  7. check working directory is correct or not, if not fix it
  8. run that process, eclipse launcher can be executed


回答5:

For thouse, who wants to launch .product file in idea - see this manual