How to find disk space of remote linux machine usi

2019-08-11 03:00发布

问题:

This question already has an answer here:

  • How to find how much disk space is left using Java? 6 answers

I am looking for simple solution for finding total disk space and available space of a remove machine using java program.

Please help

Update There are questions already similar to this with primarily focus on local machine. I was looking solution for remote machine.

回答1:

The easiest way to get the remote machine information and also safe way to do is to SSH to the server from Java and get the necessary information from.

use JSch Library for SSH connection to server.

for an example look here