1

我要做一个由跨平台(windows、linux、mac)本机桌面应用程序组成的项目,该应用程序测量用户的数据使用情况(以 KB、MB、GB 为单位)和链接连接速度(以 kbps 或 mbps 为单位) wi-fi、以太网或 3G 调制解调器连接选项。

按此顺序使用 java、python、C++ 很舒服。做了一些谷歌搜索,但我不满意。因此,我正在寻找任何关于这些语言的库和框架的建议,以使我能够完成上述任务。非常感谢。

4

1 回答 1

1

The task can be split into two parts:

  1. Gathering the data and storing them somewhere.
  2. Presenting them to the user.

Often RRDtool (RRD = round-robin database) is used for both parts. It depends on your requirements, you could for example use RRDtool to gather the data you need and them use some Python or Java RRD library for displaying the results.

See also:

于 2012-08-16T11:20:25.310 回答