hello,
is there a way to get the exact cpu-speed and the amount of physical ram of a client-machine?
all i found was
Runtime.getRuntime().availableProcessors()
which is just the number of cpus/cores.
and
Runtime.getRuntime().maxMemory()
which is just the max-heap.
if it is not possible with java alone, are there native libraries that provide this information?
thanks!

