Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿,我的主要目标是在我的 linux 系统上运行一个服务器,大约 10 个 linux 系统将连接到该服务器。所以我的动机是对服务器进行编程(在 java 中),以便找到连接到服务器的任何所需系统的磁盘容量。这可能吗??我在 ubuntu 11.10 上使用 netbeans
先感谢您
是的,这是可能的。您可以使用套接字在服务器和客户端系统之间创建通信,并且客户端套接字可以将其磁盘容量写入服务器套接字。
要获取系统的磁盘容量,请获取根文件的总空间。
long diskCapacity = new File("/").getTotalSpace();