What to do when java.util is missing on a Mac - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T10:31:03Zhttp://stackoverflow.com/feeds/question/1078319http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1078319/what-to-do-when-java-util-is-missing-on-a-mac1What to do when java.util is missing on a MacTill2009-07-03T08:15:26Z2009-07-03T08:22:38Z
<p>This is kind of weired but my Mac/Eclipse isn't offering me any java.util classes. I am still able to run the project which contains heavy use of (let's say) Vector, but I am not able to add a new Vector in the code anywhere.</p>
<p>Eclipse isn't offereing me...</p>
<p>I spent the last night reconfiguering the installed JRE's and build path etc. but it remains ...</p>
<p>I am running Java 1.60 on mac. I tried Eclipse Galielo, Ganymede.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/1078319/what-to-do-when-java-util-is-missing-on-a-mac/1078335#10783352Answer by pjp for What to do when java.util is missing on a Macpjp2009-07-03T08:19:40Z2009-07-03T08:19:40Z<p>Check that:</p>
<ul>
<li>Your source folders are configured property in Project Properties (right click on the project)</li>
<li>You have a reference to the JRE in the Java Build Path Libraries section of Project Properties and that this is a valid JRE</li>
<li>You are not missing any JARs on the class path - again these will be flagged up in Project Properties</li>
</ul>
<p>Also try Cleaning your project and making sure that Build Automatically is on.</p>