Supun Wijerathne
Supun Wijerathne

Reputation: 12948

How to create a sub-package and add existing files intellij?

I have my project structure something like this.

|--daos
|  |
|  |--MyDBReader.java

But I want to change it into this one.

daos
|
|--readers
|  |
|  |--MyDBReader.java

Can anyone tell me the preffered way to do that with intellij preserving all dependencies and usages?

Upvotes: 5

Views: 15206

Answers (2)

Supun Wijerathne
Supun Wijerathne

Reputation: 12948

Actually the better answer is:

  1. Go to the project-structure sub-window in IntelliJ.

  2. Create new package.

  3. Just drag and drop the file from the older location to the new location from the project-structure sub-window.

Upvotes: 2

seenukarthi
seenukarthi

Reputation: 8644

There are two ways (AFAIK)

Method One

  1. Right click the class in the project explorer and Refactor -> Move or Select the Class in the project explorer press F6

  2. Then select To Package enter the new package name and press Refactor button.

Method Two

Just change the package statement in MyDBReader.java from package daos; to package daos.readers;, then you will see red line under the package statement, place the cursor on the statement then do ALT+ENTER then select 'Move package to daos.readers'. This method only changes the package but does not update the usages

Upvotes: 5

Related Questions