linux查看fastjson版本
时间: 2023-04-18 22:00:48 浏览: 505
最新版fastjson
4星 · 用户满意度95%
可以通过以下命令查看当前系统中 fastjson 的版本:
```
grep fastjson /path/to/your/project/pom.xml
```
其中,`/path/to/your/project/pom.xml` 是你的项目的 pom.xml 文件的路径。如果你的项目没有使用 Maven 管理依赖,可以在项目中搜索 fastjson 的 jar 包,然后使用以下命令查看其版本号:
```
jar -tf /path/to/fastjson.jar | grep 'fastjson-.*\.jar$'
```
其中,`/path/to/fastjson.jar` 是 fastjson 的 jar 包的路径。
阅读全文