随着时间的推移,我在应用程序中获得了成百上千个这样的process_reaper线程。有人知道这些可能是什么吗?它们似乎是在我的Runtime.exec()中使用的,但是我在finally语句中销毁了我的进程,但它们仍然会出现
屏幕截图:http://www.dropmocks.com/mBxM5
Process proc = null; String line; try { logger.info("Trying to execute command " + Arrays.asList(command).toString().replace(",", "")); proc = Runtime.getRuntime().exec(command); } catch (IOException e) { logger.info("IOException while trying to execute " + command); return false; } finally { if(proc != null) { proc.destroy(); } }
标签:Java,process,reaper,线程,command,proc From: https://www.cnblogs.com/softidea/p/17843791.html