How to Fix “Unsafe cannot be resolved to a type” in Eclipse/Java?


If you have the following two errors building your Java projects using Eclipse,

  • Unsafe cannot be resolved to a type
  • The import sun.misc.Unsafe cannot be resolved

Then, this turns out to be the fix for me.

java-import-sun-misc-unsafe-cannot-be-resolved-to-a-type How to Fix "Unsafe cannot be resolved to a type" in Eclipse/Java? compiler IDE java

The import sun.misc.Unsafe cannot be resolved

Navigate to the project and Select Project – Preferences – Java Compiler – Enable project specific settings – Compiler compliance level = 11 – Use default compliance settings (Ticked)

eclipse-project-properties-java-compiler-enable-project-specific-settings How to Fix "Unsafe cannot be resolved to a type" in Eclipse/Java? compiler IDE java

eclipse-project-properties-java-compiler-enable-project-specific-settings

Apply and Close – then do a full clean rebuild, which will make the errors go away!

–EOF (The Ultimate Computing & Technology Blog) —

GD Star Rating
loading...
219 words
Last Post: How to Find Second Minimum Node In a Binary Tree (Java)?
Next Post: The FizzBuzz Example in Magik Programming Language

The Permanent URL is: How to Fix “Unsafe cannot be resolved to a type” in Eclipse/Java?

Leave a Reply