18

I have been struggling with a very weird issue that has suddenly popped up on the latest version of Eclipse Classic (4.2.2).

Everytime I try creating or refactoring a class or subclass in any of my projects (all Java) in my Eclipse workspace I get an error at the very top of my class that says

A class file was not written. The project may be inconsistent, if so try refreshing this project and building it

Again, this happens when I create new classes. And even when I rename current classes, then undo the renaming, its totally fine, but changing a single character in the name causes this error to happen for that specific class.

I have Auto Build on, and I tried multiple times to clean and refresh every project as well as restart Eclipse entirely.

I have literally no idea how to even start figuring out how to fix this. The solutions i've found through search didn't help, so i'm hoping I might find any clues here.

Sammy Guergachi
  • 1,986
  • 4
  • 26
  • 52
  • 1
    Did you try what it suggests, which is to right-click on your project and select "refresh" ? – user1676075 Jun 17 '13 at 19:56
  • I did many times, and i'm pretty sure cleaning the project with auto build is the same thing as refreshing. – Sammy Guergachi Jun 17 '13 at 19:58
  • Did you configure anything in the build path? Maybe excluded / included classes? I will also suggest that you start a new workspace and copy the source files into it. – Elist Jun 17 '13 at 22:54
  • I tried both and there seems to be nothing different about the build path and importing to a new workplace doesnt fix the issue. – Sammy Guergachi Jun 21 '13 at 14:56
  • 2
    One very curious thing that has hit me a couple of times with Eclipse is a bug(or feature?) in Windows, where full path of a file exceeds some number of characters (512?). In this case, Eclipse will silently fail to write the file, but don't realize until later. – Krumelur Jun 24 '13 at 21:47
  • I know about the 512 character limit issue and I already checked to make sure none of my classes exceed that number of characters. – Sammy Guergachi Jun 28 '13 at 17:39
  • I also experienced this issue. It turns out my disk drive was full. This is usually one of the first things to check when an app starts playing up. iTunes goes bonkers, as does Photoshop. Free up space and do a clean to fix up. – Orange Peel Nov 13 '14 at 10:04

27 Answers27

13

I had the same problem and here's how I solved it in the end: It turned out that the disc space on the drive where workspace resides was full.

Silly mistake but worth checking.

blalasaadri
  • 5,990
  • 5
  • 38
  • 58
Ganesh Satpute
  • 3,664
  • 6
  • 41
  • 78
  • 4
    This does in fact answer the question. He was saying that the solution is to have some disk space on the drive where your workspace is, which is what solved my problem. – cubecubed Jul 03 '15 at 05:58
  • 1
    Eclipse should check for storage space, that is so simple to do, instead of creating that error. This solved for me too, neither cleaning/rebuilding worked (of course). Out of complete despair, he asked for a solution and this is the solution, so this answers the question. – Aquarius Power Jan 25 '16 at 23:34
  • I also just had the problem (Eclipse 4.7.3a), and in my case the cause was that a directory within the output directory (`/target`) lay on a faulty SSD "sector". So neither Eclipse nor Windows could write to that directory, nor delete it (e.g. with clean). After 1,5hrs of CHKDSK it worked again. – Markus Mitterauer Aug 30 '18 at 14:11
13

In my case, this was caused by the fact that the build output directories were owned by a different user, and Eclipse could not write into them.

mkl
  • 90,588
  • 15
  • 125
  • 265
user8574877
  • 131
  • 1
  • 2
12

I had the same issues, the following worked for me:

  1. Right click eclipse then running "as an Administrator"
  2. Click Project > Clean.
Richie_b
  • 149
  • 1
  • 6
6

Clean your workspace by starting eclipse from the command line with the -clean argument :

eclipse -clean

See also How to run eclipse in clean mode? and what happens if we do so?

Community
  • 1
  • 1
user18428
  • 1,216
  • 11
  • 17
  • This worked for me, I copy a lot of code over manually from my customers workstation (long story), and try to match the folder structures up but some of the security settings coming across are muddled. So using `Project` -> `Clean...` from the menu resolved this for me! – Setherith Mar 19 '20 at 09:49
  • Once we clean the workspace with command prompt "eclipse.bat" -clean, as the workspace opens I gave project clean and the error is gone. After that we can start as usual through start menu without any specific arguments to it. – rinilnath Jul 19 '20 at 18:09
3

I solved this problem by running Eclipse as root.

Bret Hogg
  • 101
  • 2
2

I had the same issue on Mac OS X. I had a maven project.

Try running the following command on Terminal. This looks like an access issue.

sudo mvn clean

Provide password for admin user.

Then open Eclipse and refresh your project.

Pang
  • 9,564
  • 146
  • 81
  • 122
Kapil Suri
  • 21
  • 1
  • 4
1

We are using Eclipse here too and have to handle a workspace with more than 200 plug-ins. Every now and then people have similar problems with their workspace and inconsistencies reported in a weird way by Eclipse. What people here usually do is (next step only in case previous step didn't help): - trying to ContextMenu->Team->Clean/Refresh the whole workspace - creating a new workspace and check out all necessary files from the repository - reinstalling Eclipse to a new directory

From my experience after using the Eclipse IDE on a daily basis for many years, it doesn't make very much sense to waste too much time with these issues, unless they aren't solved by one of the steps above. It takes too much time to struggle with these things, while starting from scratch is done in an hour or less (and usually fixes the issue). If your Eclipse still behaves strangely it might make sense to go through your installed plug-ins. Not all external plug-ins follow the Eclipse guidelines and can seriously harm the performance and operational consistency of your Eclipse installation (E.g. Sonar Plug-in, Toad Plug-in, ...)

1

In my case this kind of error caused due to disk space got full and it got resolved by just freeing disk space where eclipse have been installed. That is c/d/e drivers.

sri
  • 11
  • 1
1

I come up with the same error, and in my case, this is because the permission of the project/bin directory is not recursively 775

I fixed it by:

  1. Remove the project/bin directory: sudo rm -rf project/bin
  2. Switch to Eclipse, rebuild the project: Project->Clean...

Then no errors.

Denny
  • 137
  • 1
  • 6
1

Try to launch Eclipse as Administrator.

1

I fixed it by:

1.Remove (delete the target folder) from the project/target

2.Switch to Eclipse, force maven update the project

no errors.

0

In my case such error was caused by a question mark in a quoted method name (I use geb+spock combination for automated testing).
So this method name will throw an error "Do you want something?"()
And this will not "Do you want something"()

0

It may not be the best response but to fix it, I've just delete the error marker.

Manu
  • 809
  • 1
  • 9
  • 28
0

Had the same issue. but cleaning the project and restart eclipse didn't help and disk space was not the issue. Solved the issue by copy the code to notepad(just to not lose it) and then delete the class, recreate it and paste the code back in again.

Jocke
  • 5
  • 1
  • 4
0

I solved it changed the owner of the project files. I changed from root(old owner) to user my current(user that i use with eclipse).

Carlos Mario
  • 159
  • 1
  • 2
  • 11
0

Just changed and saved java file to recompile the class. Then error disappeared.

Jovo Skorupan
  • 237
  • 2
  • 5
0

I was try run

Project->Clean...

And Rebuild. My problem was resolved

0

For linux (Debia) and working on Spring boot project (maven):

$ sudo mvn clean

Then open Eclipse and File -> Refresh.

Miroslav Glamuzina
  • 4,472
  • 2
  • 19
  • 33
AJSuarez
  • 1
  • 1
0

I had same issue, it is something similar but this post didn't help in my case. I have many inner classes which is causing the compiler to create class names with all inner class names together that is creating class name more than 255 character file limit on NTFS! read it in some other blog. I thought it will be helpful to post here.

Ex : classA$InnerClassB$......InncerClassZ.class in target folder it won't generate the class if it exceeds this limit. Try renaming your inner class name shortened. In my case i have to add InnerclassZ as its exceeding its not generating class and Eclipse complaining.

A class file was not written. The project may be inconsistent, if so try refreshing....

I shortened InnerClassZ to IClassZ fixed the issue.

Hanuman G
  • 11
  • 1
  • 6
0

I had the same issue and it got fixed by running eclipse in administrator mode Eclipse Shortcut-->Right click-->More-->Run as Administrator

Prem
  • 11
  • 1
0

I've been throught that error once when I used wsdl2java to extract java classes from a wsdl, it turns out that all classes were created in the same "class", causing end classes with long names (error - File name too long). When I organized and rename some classes the error disappeared.

bzani
  • 487
  • 4
  • 5
0

I had this issue. I did the following, it resolved.

Open Eclipse in Administrator mode; Right click on eclipse.exe "Run as administrator" Clean all projects.

nag
  • 23
  • 1
  • 4
0

@Denny's answer put me on the right track, though in my case it was the target directory. I deleted it for some reason and something automatically recreated with owner root. Changing the directory owner was not enough as it contained files that were also owned by root. So make sure to really remove the complete content of the directory and to change the owner.

r-uu
  • 423
  • 1
  • 4
  • 18
0

In my case current user didn't have access to this project dir

Anand Rockzz
  • 6,072
  • 5
  • 64
  • 71
0

I had the same issue, and the root cause was that some directories were owned by another user. I would not suggest to run eclipse by root user as you might later ran into other issues, instead just make the current user own everything inside the folder (and the folder itself):

sudo chown $USER:USERGROUP -R ~/path

sudo chown alice:sudo -R JavaProjects/
Tyler2P
  • 2,324
  • 26
  • 22
  • 31
Alice
  • 1
  • 2
0

In my case it was Carbonite trying to backup the class files using a poor internet connection... eclispe couldn't delete one or more class files because Carbonite had locked them.

-2

Before giving a try to the above solutions. Just cleaned the project and it worked.

Baburao A
  • 21
  • 1
  • 2