Java 和 Hyper-V
我正在尝试学习一些有关 JAVA 的知识,最好的方法是创建一些我实际使用的东西并知道它的目的是什么。 我正在尝试与 HyperV(WMI 库)进行通信。
例如我发现以下内容,我的问题是:如何使用它?我正在使用 Netbeans 创建 GUI。
另外,如何将 jInterop 加载到我的项目中以便我可以使用它?
谢谢。
I am trying to learn something about JAVA and the best way to do this is creating something I would actually use and know what the purpose of it is.
I am trying to communicate with HyperV (WMI Library).
For example I found the following, my question is: how to use it? I am using Netbeans to create the GUI.
Also, how to load jInterop into my project so I can use it?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 JInterop 来管理 HyperV 的所有操作。
从此处下载 JInterop。
将所有 JInterop jar 文件添加到您的项目构建路径。
以下是获取 Hyper 服务器的所有虚拟机的示例:
另外,提供管理员用户名和密码。
它应该可以工作。
谢谢。
You can use JInterop for managing all operations of HyperV.
Download JInterop from here.
Add all JInterop jar files to your project build path.
Following is an example of getting all VMs of Hyper server:
Also, provide administrator username and password.
It should work.
Thanks.