2009年9月4日金曜日

ScriptomとWMIで空き物理メモリと空き仮想メモリを調べる

ScriptomとWMIで空き物理メモリと空き仮想メモリを調べるには、以下のコードを実行します。

import org.codehaus.groovy.scriptom.*;

Scriptom.inApartment
{
locator = new ActiveXObject("WbemScripting.SWbemLocator")
service = locator.ConnectServer()
oss = service.ExecQuery(
"select * from Win32_OperatingSystem")

for(os in oss){
// 空き物理メモリと空き仮想メモリをKByteで表示
println(os.freePhysicalMemory + ":" + os.freeVirtualMemory )
}
}


動作環境
JDK6 Update14, groovy1.6.3

関連情報
http://msdn.microsoft.com/en-us/library/aa394239%28VS.85%29.aspx

0 件のコメント:

コメントを投稿