?? runtimetest.java
字號:
import java.io.*;
class RuntimeTest
{
public static void main(String[] args)
{
Runtime rt = Runtime.getRuntime();
System.out.println(rt.freeMemory());
System.out.println(rt.totalMemory());
try
{
Process p = rt.exec("java ArrTest");
/*InputStream is = p.getInputStream();
int data;
while((data=is.read()) != -1)
{
System.out.print((char)data);
}*/
}
catch(IOException ex)
{
ex.printStackTrace();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -