我需要在 Linux、Solaris 和 Windows 上对 JRE 1.6 中 os.arch 属性的所有可能值进行最新编译。如果可能,请引用您的发现的来源。我需要这些值来选择我的 JNLP 文件中的资源。基本上我需要根据 JRE 是 32 位还是 64 位来分配不同的 JVM 内存。等待你的答复。谢谢
3 回答
您可以在自己的 jdk 中寻找它的最佳位置。
看着java.lang.System
你可以看到属性是在 initializeSystemClass
方法使用initProperties
方法中初始化的,该方法依赖于本机代码使用JNI
:
private static native Properties initProperties(Properties props);
/**
* Initialize the system class. Called after thread initialization.
*/
private static void initializeSystemClass() {
// VM might invoke JNU_NewStringPlatform() to set those encoding
// sensitive properties (user.home, user.name, boot.class.path, etc.)
// during "props" initialization, in which it may need access, via
// System.getProperty(), to the related system encoding property that
// have been initialized (put into "props") at early stage of the
// initialization. So make sure the "props" is available at the
// very beginning of the initialization and all system properties to
// be put into it directly.
props = new Properties();
initProperties(props); // initialized by the VM
...
...
}
如果您检查从不同平台调用的本机代码的来源,您可以看到系统属性initProperties
的可能值。os.arch
所以一步一步来:
首先看一下调用 fromSystem.c
的方法。从JNI
java.lang.System.initProperties
System.c
JNIEXPORT jobject JNICALL
Java_java_lang_System_initProperties(JNIEnv *env, jclass cla, jobject props)
{
char buf[128];
java_props_t *sprops = GetJavaProperties(env);
jmethodID putID = (*env)->GetMethodID(env,
(*env)->GetObjectClass(env, props),
"put",
"(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;");
if (sprops == NULL || putID == NULL ) return NULL;
PUTPROP(props, "java.specification.version",
JDK_MAJOR_VERSION "." JDK_MINOR_VERSION);
PUTPROP(props, "java.specification.name",
"Java Platform API Specification");
PUTPROP(props, "java.specification.vendor", "Sun Microsystems Inc.");
PUTPROP(props, "java.version", RELEASE);
PUTPROP(props, "java.vendor", VENDOR);
PUTPROP(props, "java.vendor.url", VENDOR_URL);
PUTPROP(props, "java.vendor.url.bug", VENDOR_URL_BUG);
...
/* os properties */
PUTPROP(props, "os.name", sprops->os_name);
PUTPROP(props, "os.version", sprops->os_version);
// HERE IS THE `os.arch` PROPERTY :)
PUTPROP(props, "os.arch", sprops->os_arch);
如您所见,它的os.arch
来源 PUTPROP(props, "os.arch", sprops->os_arch);
和sprops
实现是使用java_props_t *sprops = GetJavaProperties(env);
. 所以让我们看一下GetJavaProperties(env)
,这个方法定义java_props.h
为:
java_props_t *GetJavaProperties(JNIEnv *env);
并且实施似乎取决于操作系统。
所以最后寻找一个具体的实现GetJavaProperties
;在 Windows 中,此属性可以采用的可能值为ia64
、amd64
、x86
或unknown
。您可以从java_props_md.c
文件中看到:
#if _M_IA64
sprops.os_arch = "ia64";
#elif _M_AMD64
sprops.os_arch = "amd64";
#elif _X86_
sprops.os_arch = "x86";
#else
sprops.os_arch = "unknown";
#endif
对于 Solaris 似乎更复杂,因为本机代码中的属性值来自java_props_md.c
特定于 solaris 中定义的宏:
sprops.os_arch = ARCHPROPNAME;
这个宏定义如下Makefile
:
OTHER_CPPFLAGS += -DARCHPROPNAME='"$(ARCHPROP)"'
所以看起来这来自编译它的环境(对不起,我不是 C 专家,我只是在猜测,但也许我可以指导你一点)。
在Linux文件夹中src/linux/native/
没有java_props_md.c
所以我想在这种情况下采用与solaris相同的源(我再次猜测......)。
注意:我使用 1.6 版本来获取此值,但是可以在最新的 Java 版本中添加新值,因此请检查您所需的版本。
希望能帮助到你,
我在 2019 年遇到了同样的问题。尤其是在 arm 处理器方面。
试用后,树莓派 2 (ARMv7) 似乎只是简单地返回了字符串arm
。
树莓派 3 (ARMv8) 返回aarch64
.
x86 64 位桌面和服务器返回amd64
.
希望这可以帮助某人。
您还可以编写如下代码来查找 os 及其架构。
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang.SystemUtils;
public class PlatformDetection {
private String os;
private String arch;
public static String OS_WINDOWS = "windows";
public static String OS_OSX = "osx";
public static String OS_SOLARIS = "solaris";
public static String OS_LINUX = "linux";
public static String ARCH_PPC = "ppc";
public static String ARCH_X86_32 = "x86_32";
public static String ARCH_X86_64 = "x86_64";
public PlatformDetection() {
// resolve OS
if (SystemUtils.IS_OS_WINDOWS) {
this.os = OS_WINDOWS;
} else if (SystemUtils.IS_OS_MAC_OSX) {
this.os = OS_OSX;
} else if (SystemUtils.IS_OS_SOLARIS) {
this.os = OS_SOLARIS;
} else if (SystemUtils.IS_OS_LINUX) {
this.os = OS_LINUX;
} else {
throw new IllegalArgumentException("Unknown operating system " + SystemUtils.OS_NAME);
}
// resolve architecture
Map<String, String> archMap = new HashMap<String, String>();
archMap.put("x86", ARCH_X86_32);
archMap.put("i386", ARCH_X86_32);
archMap.put("i486", ARCH_X86_32);
archMap.put("i586", ARCH_X86_32);
archMap.put("i686", ARCH_X86_32);
archMap.put("x86_64", ARCH_X86_64);
archMap.put("amd64", ARCH_X86_64);
archMap.put("powerpc", ARCH_PPC);
this.arch = archMap.get(SystemUtils.OS_ARCH);
if (this.arch == null) {
throw new IllegalArgumentException("Unknown architecture " + SystemUtils.OS_ARCH);
}
}
public String getOs() {
return os;
}
public String getArch() {
return arch;
}
public void setArch(String arch) {
this.arch = arch;
}
public void setOs(String os) {
this.os = os;
}
public String toString() {
return os + "_" + arch;
}
}
参考下面的链接