Android Question Need to check network tx / rx

walmo

Active Member
Licensed User
Longtime User
Hi
Is there a way to check the total bytes in and out on wifi network ,
on linux i check the "/sys/class/net/wlan0/statistics/tx_bytes" file for the bytes.
Is there something similar on b4a .(or even better)
Thanks
 

walmo

Active Member
Licensed User
Longtime User
Sorry ,found it
B4X:
Dim jo As JavaObject
jo.InitializeStatic("android.net.TrafficStats")
Log(jo.RunMethod("getMobileRxBytes", Null))
Log(jo.RunMethod("getTotalRxBytes", Null))

Thanks
 
Upvote 0
Top