Java Process详解及实例

网友投稿 403 2023-05-03


Java Process详解及实例

Runtime

java可以通过Runtime来调用其他进程,如cmd命令,shell文件的执行等。可以应该该类设置系统时间,执行shell文件。此处记录几个有用应用如下。

设置本地时间

可以调用cmd /c date命令,完成本地时间设置,不过这个命令在win7下可以使用,但是win10需要管理员权限,可能无法设置系统时间。win7下使用Java实现修改本地时间代码如下,需要注意的是waitFor是必须的,否则无法立即生效。

/**

* 设置本地日期

* @param date yyyy-MM-dd格式

*/

private static void setSystemDate(String date){

Process process = null;

String command1 = "cmd /c date "+date;

System.out.println(command1);

try {

process = Runtime.getRuntime().exec(command1);

//必须等待该进程结束,否则时间设置就无法生效

process.waitFor();

} catch (IOException | InterruptedException e) {

e.printStackTrace();

}finally{

if(process!=null){

process.destroy();

}

}

}

网卡吞吐量计算

可以通过cat /proc/net/dev命令获取网卡信息,两次获取网卡发送和接收数据包的信息,来计算网卡吞吐量。实现如下:

/**

* @Purpose:采集网络带宽使用量

* @param args

* @return float,网络带宽已使用量

*/

public static Double getNetworkThoughput() {

Double curRate = 0.0;

Runtime r = Runtime.getRuntime();

// 第一次采集流量数据

long startTime = System.currentTimeMillis();

long total1 = calculateThoughout(r);

// 休眠1秒后,再次收集

try {

Thread.sleep(1000);

} catch (InterruptedException e) {

e.printStackTrace();

}

// 第二次采集流量数据

long endTime = System.currentTimeMillis();

long total2 = calculateThoughout(r);

// 计算该段时间内的吞吐量:单位为Mbps(million bit per second)

double interval = (endTime-startTime)/1000;

curRate = (total2-total1)*8/1000000*interval;

System.out.println("收集网络带宽使用率结束,当前设备的网卡吞吐量为:"+(curRate)+"Mbps.");

return curRate;

}

/**

* 计算某个时刻网卡的收发数据总量

* @param runtime

* @return

*/

private static long calculateThoughout(Runtime runtime){

Process process = null;

String command = "cat /proc/net/dev";

BufferedReaCBnHTSCyder reader = null;

String line = null;

long total = 0;

try {

process = runtime.exec(command);

reader = new BufferedReader(new InputStreamReader(process.getInputStream()));

while ((line = reader.readLine()) != null) {

line = line.trim();

// 考虑多网卡的情况

if (line.startsWith("eth")) {

log.debug(line);

line = line.substring(5).trim();

String[] temp = line.split("\\s+");

total+=(Long.parseLong(temp[0].trim()));// Receive

total+=(Long.parseLong(temp[8].trim()));// Transmit

}

}

} catch (NumberFormatException | IOException e) {

e.printStackTrace();

} finally {

if (reader != null) {

try {

reader.close();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

if (process != null) {

process.destroy();

}

}

return total;

}

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Webpack常见静态资源处理
下一篇:React学习笔记之事件处理(二)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~