Reputation: 2144
I want to know what type of CPU (Intel Pentium V, AMD Athlon Barton etc.) is built in and which features it has (SSE, MMX, Stepping etc.). Is there some ready-made Java-library for this?
Upvotes: 3
Views: 857
Reputation: 103
Yes, for Windows, the combination Jawin and WMI could be the solution. Here is a good article. Unfortunately in German only, but maybe the example code helps.
Upvotes: 1
Reputation: 533790
The JVM does this internally so you don't need to know. There is no way in Java to take advantage of this information other than what the JVM does for you already.
Why do you want to know?
Upvotes: -1