gpt4 book ai didi

java - 使用 Oshi Java 库获取 Windows PE 的硬件和操作系统信息

转载 作者:行者123 更新时间:2023-12-05 09:08:44 24 4
gpt4 key购买 nike

我无法在 Windows PE 上运行我的 Java 应用程序。基本上,我的应用程序获取硬件数据和操作系统信息。为此,我正在使用 Oshi Java 库,但 Oshi 使用的是 JNA 库,它不断崩溃。

注意:我的应用程序在任何其他操作系统上运行良好,但无法在 Windows PE 上运行。我使用的代码如下:

HardwareAbstractionLayer hal = si.getHardware();
OperatingSystem os = si.getOperatingSystem();

hal.getComputerSystem();

我们将不胜感激。

最佳答案

我是 OSHI 的作者/主要维护者和 JNA 的提交者。 JNA's Platform class不区分 Windows 和 Windows PE。 OSHI 的代码依赖于标准 Windows Version Helper API以确定操作系统对 DLL 函数的支持。但是,Windows PE 并未表示为单独的版本。

事实上,Windows PE 并非设计为独立操作系统。它的用途(和授权使用)非常有限。来自Windows PE docs (强调我的):

Windows PE is not a general-purpose operating system. It may not be used for any purpose other than deployment and recovery.

更进一步,

To prevent its use as a production operating system, Windows PE automatically stops running the shell and restarts after 72 hours of continuous use.

本质上,Windows 10 API 中可用的某些功能在 PE 中不存在。来自 these Microsoft docs :

API Compatibility reference

Windows PE is a lightweight, bootstrap operating system based on a subset of components from the Windows operating system. It is designed to host deployment and recovery apps. As such, it contains many Windows binaries that are needed to host the APIs that are most important to these classes of app. Due to size and other design constraints, not all Windows binaries are present in Windows PE, and therefore not all Windows APIs are present or usable.

这是 WinPE 的一个特性,而不是一个错误。

OSHI 被设计为一个提供信息的跨平台图书馆。它不是“部署和恢复”应用程序。 OSHI 链接(通过 JNA)到标准 Windows DLL,例如 Kernel32,而 WinPE 有其 own set of MinCore DLLs .

Windows PE 旨在非常轻便,并且非常特定于 Windows 操作系统系列,并且非常特定于部署和恢复任务。

您可能应该使用命令行或 Powershell “部署和恢复”所需的操作系统和硬件信息工具,WinPE 的唯一授权用途。 OSHI的ExecutingCommand class 是一个很好的实用程序类,用于将命令行响应处理为 Java 字符串,欢迎您在自己的 Java 项目中复制和使用它,而无需整个 OSHI/JNA 依赖项的开销。

如果您可以指定“JNA 崩溃”的具体点,我可以帮助您确定解决可能抛出的任何异常的方法。或者,您可以在 OSHI 项目中提交问题/功能请求以识别这些故障,以使其对 PE 环境更健壮,尽管“更健壮”可能会以“避免崩溃”的形式出现,而不是提供以下信息:不能从 WinPE 中的 Windows API 获得。最后,您可以选择在 JNA 邮件列表上提出您的问题以进行更广泛的讨论。

关于java - 使用 Oshi Java 库获取 Windows PE 的硬件和操作系统信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63115077/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com