IntelliJ Organize Imports

JavaIntellij Idea

Java Problem Overview


Does IntelliJ have an Organize Imports feature similar to that in Eclipse? What I have is a Java file with multiple classes missing their imports. Example:

package com.test;
public class Foo {
    public Map map;
    public JTable table;
}

In Eclipse I could use Organize Imports and it would automatically import both java.util.Map and javax.swing.JTable. In IntelliJ I have to individually go to each class, select it, then press Alt-Enter. There is an Optimize Imports feature but all it seems to do is sort and expand the existing imports.

I'm using IntelliJ 10.5.

Java Solutions


Solution 1 - Java

Ctrl + Alt + O (Code → Optimize Imports...) is what you're looking for, both on Windows/Linux and macOS keymaps.

It says "Optimize", but, if configured to do so, it will also:

  • organize existing imports
  • remove unneeded imports
  • add new required imports
  • add unambiguous imports on the fly

You can tune the auto-import settings under "Settings → Editor → General → Auto Import" as described by Dave.

You can also modify how the imports are auto-ordered under "Settings → Editor → Code Style → Java → Imports"

Solution 2 - Java

Under "Settings -> Editor -> General -> Auto Import" there are several options regarding automatic imports. Only unambiguous imports may be added automatically; this is one of the options.

Solution 3 - Java

Simple & short solution worked for me.

Go to File -> Settings -> Editor -> Auto Import -> Java (left panel) and make the below things: Select check box for "Add unambigious imports on the fly" and "Optimize imports on the fly"

Refer this.

enter image description here

Solution 4 - Java

In addition to Optimize Imports and Auto Import, which were pointed out by @dave-newton and @ryan-stewart in earlier answers, go to:

  • IDEA <= 13: File menu > Settings > Code Style > Java > Imports
  • IDEA >= 14: File menu > Settings > Editor > Code Style > Java > Imports (thanks to @mathias-bader for the hint!) Settings dialog

There you can fine tune the grouping and order or imports, "Class count to use import with '*'", etc.

Note:
since IDEA 13 you can configure the project default settings from the IDEA "start page": Configure > Project defaults > Settings > .... Then every new project will have those default settings: enter image description here

Solution 5 - Java

July 2015 - I have concluded that IntelliJ does not support automatically resolving imports with a single function. "Organize imports" simply removes unused imports, it does not resolve unimported types. Control-Space resolves a single unimported type. There does not exist a single action to resolve all types' imports.

Solution 6 - Java

navigate to the file where you want to organize imports or just click on the whole package or even click on the project than press CTRL + ALT + O

Solution 7 - Java

In IntelliJ 14, the path to the settings for Auto Import has changed. The path is

IntelliJ IDEA->Preferences->Editor->General->Auto Import

then follow the instructions above, clicking Add unambiguous imports on the fly

I can't imagine why this wouldn't be set by default.

Solution 8 - Java

Shortcut for the Mac: (ctrl + opt + o)

Solution 9 - Java

Goto Help -> Find Action (Short Cut for this is Cntl + Shift + A) and type Optimize imports (Short cut for this is Cntl + Alt + O)

Solution 10 - Java

Just move your mouse over the missing view and hit keys on windows ALT + ENTER

Solution 11 - Java

ALT+ENTER was far from eclipse habit ,in IDEA for me mouse over did not work , so in setting>IDESetting>Keymap>Show intention actions and quick-fixes I changed it to mouse left click , It did not support mouse over! but mouse left click was OK and closest to my intention.

Solution 12 - Java

That plugin will automatically do the "organize import" action on file save: https://github.com/dubreuia/intellij-plugin-save-actions.

To install: "File > Settings > Plugins > Browse repositories... > Search 'Save Actions' > Category 'Code tools'". Then activate the "organize import" save action.

Solution 13 - Java

I finally created a workaround around this frustrating issue. I'm not completely happy with the workaround, but it's better than nothing.

Basically, after you paste the source code and unambigous imports are fixed, just press F2 to highlight the next compiler error. If the current error is an import-missing error, press Alt+Enter, then Enter to select the Import option, then pick the correct import. Then, press F2 again.

Solution 14 - Java

If you are missing just one import (the class name has red underline), click and hover the mouse over it, and a blue suggested import statement will appear. If you hit, Alt + Enter at this point, the import will be included in the file and the red underline should disappear.

Solution 15 - Java

Shortcut on Android Studio on MacOS: Control + Option + O

Solution 16 - Java

[This might still be a useful link for a quick tip on how to optimize import in IntelliJ idea] https://youtu.be/14odF-8X76o

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSteve KuoView Question on Stackoverflow
Solution 1 - JavaRyan StewartView Answer on Stackoverflow
Solution 2 - JavaDave NewtonView Answer on Stackoverflow
Solution 3 - JavaAshishView Answer on Stackoverflow
Solution 4 - Javat0r0XView Answer on Stackoverflow
Solution 5 - JavaSteve KuoView Answer on Stackoverflow
Solution 6 - JavaKhachatur StepanyanView Answer on Stackoverflow
Solution 7 - JavaJoeView Answer on Stackoverflow
Solution 8 - JavaTiago GasparView Answer on Stackoverflow
Solution 9 - JavaManga RaoView Answer on Stackoverflow
Solution 10 - JavaShairyarView Answer on Stackoverflow
Solution 11 - JavaAli.MojtehedyView Answer on Stackoverflow
Solution 12 - JavaAlexandre DuBreuilView Answer on Stackoverflow
Solution 13 - JavaMartin VysnyView Answer on Stackoverflow
Solution 14 - JavaZorayrView Answer on Stackoverflow
Solution 15 - JavaStigasaurView Answer on Stackoverflow
Solution 16 - JavaClaraView Answer on Stackoverflow