程序猿全敏
2016-11-07 17:29:45
关于“java和python结合项目,实现ajax+echarts显示端口占用数监控”怎么运行
源码分享地址:java和python结合项目,实现ajax+echarts显示端口占用数监控
首先需要下载Python的安装包。看操作系统下载!去python官网下载
即完成安装,然后新建一个文件命名为test.py 把上面的python代码拷贝到test.py里面。
import re import os from threading import Timer import time def execCmd(cmd): r = os.popen(cmd) text = r.read() r.close() return text def sleeptime(hour,min,sec): return hour*3600 + min*60 + sec; second = sleeptime(0,0,60); while 1==1: time.sleep(second); #if __name__ == '__main__': cmd = 'netstat -an |find /c ":80"' cmd1 = 'netstat -an |find /c ":8080"' cmd2 = 'netstat -an |find /c ":8888"' cmd3 = 'netstat -an |find /c ":8080"' result = execCmd(cmd) result1 = execCmd(cmd1) result2 = execCmd(cmd2) result3 = execCmd(cmd3) print("80端口数为:"+result) print("8080端口数为:"+result1) print("8888端口数为:"+result2) print("8080端口数为:"+result3) x = open("test.txt", 'a') f =open("test2.txt",'a') y=open("test3.txt",'a') z=open("test4.txt",'a') x.write(result) f.write(result1) y.write(result2) z.write(result3) x.close() f.close() y.close() z.close()
doc命名找到你新建文本的位置
比如我已经找到在D盘的python文件夹目录下
然后输入python test.py即可运行。
本地会生成几个txt文本,然后javaweb就不用说了。
不懂的可以加我扣扣
评论
最近浏览
ennio520
2019年9月29日
暂无贡献等级
benyan LV8
2019年4月29日
我们有一颗向往的心 LV2
2019年2月21日
老瞎眼
2018年11月23日
暂无贡献等级
75431368 LV10
2018年5月23日
dagf113225 LV68
2018年3月19日
dfaghrs LV19
2017年12月26日
Sam Lee LV11
2017年12月3日
203778513 LV9
2017年9月13日
xuxu002_long LV8
2017年6月14日