ChatGPT解决这个技术问题 Extra ChatGPT

What does this symbol mean in IntelliJ? (red circle on bottom-left corner of file name, with 'J' in it)

Under the target folder in IntelliJ for a Java project I created, I have a few java source files in the package. Beside each file the 'J' icon has a red circle with a line through it.

What does that mean? How do I fix it?

The answer you were given is correct but not full. Intellij replace C with J if the source file is not under a defined src folder or if the file is too big. I explain Intellij Icons in my blogpost.
Possible duplicate of intellij icon over project files

I
ItamarG3

You need to specify the source dir

File> Project Structure > Modules

click the directory and click the Sources button

It's weird because usually it's done automatically. Maybe it's better if you recreate the project again.


Please, i can't find Sources tab, Modules contains (Properties, Signing, Flavors, Build Types, Dependencies)...thank you very much.
With "Android Studio" this can happen when you use 'flavors'. The build variant will determine what files are in the source dir, so changing the build variant can change which files have the mentioned icon
Good answer, thank you, also with IntelliJ version 15.0.1 there are examples of the folder structure to the right in the sources view.
I've tried this with the wrong folder (src) but I guess it was too high in the hierarchy, all my imports went wrong. If you have the same problem, try this with another folder.
This is happening every time I add Gradle to my existing java project. Hopefully, IntelliJ will fix it soon.
D
Djalas

If it is a maven project

right click on the pom.xml Add As Maven Project

Thanks


After doing 3. right click pom.xml -> maven -> reimport, It worked
Thanks, it worked. I added root pom as maven project, and it changed all my child modules automatically. Great..
Thanks so very much. It helped.
E
Eric Green

The first answer from irreputable above that starts out with "you need to specify the source dir" is correct, but I don't see him telling you the easy way to do so.

Simply right click on the java sources folder ("java" under src/main/java if it is a Maven project for example) and select Mark Directory As > Sources Root (see screenshot below).

https://i.stack.imgur.com/clMWS.png


H
Hari Palappetty

This situation happens when the IDE looks for src folder, and it cannot find it in the path. Select the project root (F4 in windows) > Go to Modules on Side Tab > Select Sources > Select appropriate folder with source files in it> Click on the blue sources folder icon (for adding sources) > Click on Green Test Sources folder ( to add Unit test folders).


M
Marged

Find all IntelliJ (v15) symbols over here: https://www.jetbrains.com/idea/help/symbols.html

This site states that this icon stands for "Java class located out of the source root. Refer to the section Configuring Content Roots for details."


s
sandamal wijeweera

First mark the directory as the source root. Then go to the pom excel and right click on it. select add as maven project .


D
Dunfield

Another option if you're using Flavors in Android Studio:

Click Build -> Select Build Variant.

In the list click the variant you're working in and it will turn green and the others will have the red J.


H
Homilzio Trovoada Santos

Press F4 at the project root and select the the root source pressing the source button. It resolved my problem!

for(; ;){
  makeGoodCode();
}

A
Arefe

As mentioned earlier,

right click on the pom.xml

https://i.stack.imgur.com/PJIhM.png

Add As Maven Project

https://i.stack.imgur.com/i1PmQ.png


S
Shoham

I downloaded a project from github with .idea folder. After deleting that folder, everything was ok.


D
Das_J

Actually this can happens because of two reason.

Your project not getting/ Updating your dependencies. Go to your terminal and enter mvn clean install. Or right click on pom.xml and click Add as Mevan Project. Check your jdk has set properly to the project.


S
Spillz

This was killing me as I had the same issue. I just going over old projects. Really redoing old lessons from class to get more practice. The repos just have compatibility issues. So I import the project. Then add the source like others state. Then close the project. Delete the .idea directory in the root and re-import project.


佚名

It means those files aren't part of the project settings.


M
Mukund BS

mark the java folder as source root.It will solve.


H
Hard Song

Maybe your project has not been as android project by android studio, please make sure that plugin 'android support' has been enabled(Android Studio Preferences -> Plugins -> Select Android Support)


Close Android Studio and delete .idea and .gradle folder from project structure and start Studio again.
R
Ramakant

Close Android Studio and delete .idea and .gradle folder from project structure and start Studio again.


u
user3325776

It means your Java source files aren't part of the project.

If the suggestions mentioned here don't resolve the issue, you may have hit a rare bug like I did. Researching the exceptions found in the log helped me. In my case, disabling the "Plugin DevKit", deleting the .idea directory, and reimporting the project worked.


R
Ray Rojas

This is what worked for me

Press File from the toolbar Press Sync Project with Gradle Files


S
Soma Kundu

For a gradle project "./gradlew --stop" will help to resolve the problem when the source directory is correctly specified and project is properly synced.


This should be a comment.