```
/**
* @author 张跃帅
* @Description: 获取网络速度-工具
* @date 2020/08/12
*/
@Slf4j
public class NetworkUtil {
/**
* 网速测速时间2s
*/
private static final int SLEEP_SECONDS = 2;
/**
* 获取网络上下行速率
* 格式{"UP": "123KB/S, "DOWN": "345KB/S"}
*/
public static Dict getNetworkUpRate() {
// 创建map
Dict dictMap = Dict.create();
// 变量-过程
Process pro = null;
// 获取运行时
Runtime r = Runtime.getRuntime();
// 变量-缓冲区读取
BufferedReader input = null;
try {
// 获取当前的操作系统
boolean isWindows = SystemUtil.getOsInfo().isWindows();
// windows命令
String command = isWindows ? "netstat -e" : "ifconfig";
// 执行命令
pro = r.exec(command);
// 创建缓冲读卡器
input = new BufferedReader(new InputStreamReader(pro.getInputStream()));
// 联机读取
long[] result1 = readInLine(input, isWindows);
// 等待
Thread.sleep(SLEEP_SECONDS * 1000);
// 销毁
pro.destroy();
// 关闭
input.close();
// 执行命令
pro = r.exec(command);
// 创建缓冲读卡器
input = new BufferedReader(new InputStreamReader(pro.getInputStream()));
// 联机读取
long[] result2 = readInLine(input, isWindows);
// 可读文件大小
String upSpeed = FileUtil.readableFileSize(Convert.toLong(NumberUtil.div(NumberUtil.sub(result2[0], result1[0]), SLEEP_SECONDS)));
String downSpeed = FileUtil.readableFileSize(Convert.toLong(NumberUtil.div(NumberUtil.sub(result2[1], result1[1]), SLEEP_SECONDS)));
// 添加
dictMap.put("up", upSpeed + (upSpeed.endsWith("B") ? "/S" : "B/S"));
dictMap.put("down", downSpeed + (downSpeed.endsWith("B") ? "/S" : "B/S"));
} catch (Exception e) {
log.info(">>> 获取网络测速失败", e.getMessage());
} finally {
// 判断
if (input != null) {
try {
// 关闭
input.close();
} catch (IOException e) {
log.info(">>> 获取网络测速失败", e.getMessage());
}
}
// 使用Optional是用来设置默认值的,杜绝null的出现
Optional.ofNullable(pro).ifPresent(Process::destroy);
}
// 返回
return dictMap;
}
/**
* 格式数字
*/
@SuppressWarnings("all")
private static String formatNumber(double f) {
return new Formatter().format("%.2f", f).toString();
}
/**
* 联机读取
*/
private static long[] readInLine(BufferedReader input, boolean isWindows) {
// 变量数组
long[] arr = new long[2];
// 变量-字符串标记器
StringTokenizer tokenStat;
try {
// 判断-操作系统
if (isWindows) {
// 获取windows环境下的网口上下行速率
input.readLine();
input.readLine();
input.readLine();
input.readLine();
// 创建-字符串标记器
tokenStat = new StringTokenizer(input.readLine());
// 下一个令牌
tokenStat.nextToken();
// 参数转换
arr[0] = Long.parseLong(tokenStat.nextToken());
arr[1] = Long.parseLong(tokenStat.nextToken());
} else {
// 获取linux环境下的网口上下行速率
long rx = 0, tx = 0;
// 变量
String line = null;
// RX packets:4171603 errors:0 dropped:0 overruns:0 frame:0
// TX packets:4171603 errors:0 dropped:0 overruns:0 carrier:0
// 遍历
while ((line = input.readLine()) != null) {
// 判断
if (line.contains("RX packets")) {
// 拼接
rx += Long.parseLong(line.substring(line.indexOf("RX packets") + 11, line.indexOf(" ", line.indexOf("RX packets") + 11)));
} else if (line.contains("TX packets")) {
// 拼接
tx += Long.parseLong(line.substring(line.indexOf("TX packets") + 11, line.indexOf(" ", line.indexOf("TX packets") + 11)));
}
}
// 赋值
arr[0] = rx;
arr[1] = tx;
}
} catch (Exception e) {
log.info(">>> 获取网络测速失败", e.getMessage());
}
// 返回
return arr;
}
}
- Jump简介
- 技术架构
- 代码规范
- 规范导读
- JAVA规范
- 数据库表设计规范
- 集成项目
- JDK1.8-pom.xml
- JDK21-pom.xml
- 项目结构
- 业务模块-方法名称规范
- 跨域配置
- License授权配置
- 公共字段自动填充
- 全局异常处理器
- PageOffice配置
- Beetl模板引擎配置
- application.properties
- application-prod.yml
- banner.txt
- logback-spring.xml
- jump-core (核心组件)
- Maven依赖
- 通用枚举
- 公共数据状态 - 枚举
- 公共逻辑删除 - 枚举
- 公共操作编码类型 - 枚举
- 公共tree父节点 - 枚举
- 公共是或否 - 枚举
- 工具Util
- AopTargetUtil
- DownloadUtil
- GenerateNumUtil
- HttpServletUtil
- IpUtil
- JoinPointUtil
- MacUtil
- NetworkUtil
- ParamToUtil
- ResponseUtil
- TimeZoneDateUtil
- UaUtil
- 统一返回
- 结果对象
- 如何使用
- jump-cahche (缓存组件)
- Maven依赖
- Redis配置
- 缓存常量
- 工具Util
- RedisCacheUtil
- jump-idempotent (幕等组件)
- Maven依赖
- Context上下文
- 操作器
- 接口
- 如何实现
- AOP参数
- AOP使用方法
- jump-lock (分布式锁组件)
- Maven依赖
- 枚举
- AOP参数
- AOP使用方法
- 工具Util
- RedissonLockUtil
- Util使用方法
- jump-mybatis (mybatis组件)
- Maven依赖
- 基础Entity
- 枚举
- 查询类型 - 枚举
- 条件查询
- search
- service
- 分页结果集
- Mapper
- MyMapper
- 使用方法
- DDL操作
- DML操作
- 工具Util
- EntityUtil
- PageUtil
- TableUtil
- jump-dynamic-datasource (多数据源组件)
- Maven依赖
- Context上下文
- 操作器
- 接口
- 如何实现
- 工具Util
- DatasourceUtil
- 如何使用
- jump-satoken (satoken组件)
- Maven依赖
- Context上下文
- 操作器
- 接口
- 如何实现
- Satoken配置信息
- SatokenUser信息
- Redis缓存操作
- SatokenRedisCache
- SatokenUserRedisCache
- 放行白名单
- jump-oss (OSS组件)
- Maven依赖
- 工具Util
- OssFileUtil
- OssPlatformUtil
- 如何使用
- jump-xss (XSS组件)
- Maven依赖
- 白名单放行
- jump-email (邮件组件)
- Maven依赖
- Email客户端信息
- Email发送参数
- 工具Util
- jump-websocket (WebSocket组件)
- Maven依赖
- 消息对象
- 工具Util
- 如何使用
- jump-weixin (微信组件)
- Maven依赖
- jump-system (系统管理组件)
- Maven依赖
- AOP
- 系统操作日志AOP
- 系统数据日志AOP
- 系统操作权限AOP
- 字典转文本AOP
- Redis缓存操作
- SystemConfigRedisCache
- 工具Util
- LoginUserUtil
- SystemAreaUtil
- SystemHomeUtil
- SystemMenuUtil
- SystemOrgAdminUtil
- SystemOrgTypeUtil
- SystemRoleUtil
- SystemUserLoginAreaUtil
- SystemUserUtil
- jump-timer(定时器组件)
- Maven依赖
- 枚举
- Api接口
- 工具Util
- ActionClassUtil
- TimerTaskUtil
- 如何使用
- jump-ueditor (富文本组件)
- Maven依赖
- 如何使用
- 配置 ueditor.config.js
- 后端 application.properties
- 前端 vue3
- vue-codemirror (代码编译器)
- npm依赖
- PageOffice整合
- Maven依赖
- License授权配置
- 枚举
- 文件来源 - 枚举
- 预览文件类型 - 枚举
- 文件预览参数
- 下载文件
- 预览文件
- 工具Util