我想在 GSP 中显示一些关于我的 JVM 的内存信息。
我愿意:
<table>
<tr><td>Total memory</td><td><%=Runtime.runtime.totalMemory()%></td></tr>
<tr><td>Free memory</td><td><%=Runtime.runtime.freeMemory()%></td></tr>
<tr><td>Max memory</td><td><%=Runtime.runtime.maxMemory()%></td></tr>
<table>
还行吧。它给了我诸如 504385536 之类的值。我宁愿只显示 504Meg 或 504.3Meg 之类的东西。这可能吗?
谢谢