デバイスでランタイムを取得しようとしています.2つのデバイス、Xperia Z1、注4で次の方法をテストしました.
私が試した次のコード:
private String getIsArtInUse() {
return System.getProperty("java.vm.version");
}
このコードは 2.1 を返します。いくつかのスタックオーバーフローの回答が言うように、2.0 より大きいバージョンは ART であることを意味しますが、私のランタイムは Dalvik です。
private CharSequence getCurrentRuntimeValue() {
private static final String SELECT_RUNTIME_PROPERTY = "persist.sys.dalvik.vm.lib";
private static final String LIB_DALVIK = "libdvm.so";
private static final String LIB_ART = "libart.so";
private static final String LIB_ART_D = "libartd.so";
try {
Class<?> systemProperties = Class.forName("android.os.SystemProperties");
try {
Method get = systemProperties.getMethod("get",
String.class, String.class);
if (get == null) {
return "WTF?!";
}
try {
final String value = (String)get.invoke(
systemProperties, SELECT_RUNTIME_PROPERTY,
/* Assuming default is */"Dalvik");
if (LIB_DALVIK.equals(value)) {
return "Dalvik";
} else if (LIB_ART.equals(value)) {
return "ART";
} else if (LIB_ART_D.equals(value)) {
return "ART debug build";
}
return value;
} catch (IllegalAccessException e) {
return "IllegalAccessException";
} catch (IllegalArgumentException e) {
return "IllegalArgumentException";
} catch (InvocationTargetException e) {
return "InvocationTargetException";
}
} catch (NoSuchMethodException e) {
return "SystemProperties.get(String key, String def) method is not found";
}
} catch (ClassNotFoundException e) {
return "SystemProperties class is not found";
}
}
このコードは、常に Dalvik を返します。
public String getRuntime()
{
return System.getProperty("java.vm.name");
}
以下もDalvikを返しますが、正確に適用されたランタイムを返すとは思いません。
助言がありますか ?