Back to project page javainstaller.
The source code is released under:
GNU General Public License
If you think the Android project javainstaller listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package gnu.java.lang.management; /*from w ww . j a v a2 s .c om*/ import gnu.classpath.SystemProperties; import java.io.File; final class VMRuntimeMXBeanImpl { static String[] getInputArguments() { throw new UnsupportedOperationException("Not yet implemented."); //TODO implement this } static String getName() { return SystemProperties.getProperty("java.vm.name") + " " + SystemProperties.getProperty("java.vm.version"); } //only accurate to a second not to a millisecond static long getStartTime() { return new File("/proc/self").lastModified(); } }