Edit C:\Program Files\Java\jdk1.8.0_121\javafx\scene\PropertyHelper.java
/* * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene; import java.security.AccessController; class PropertyHelper { // Function to return whether a system property is set to true. Note that // this runs within a doPrivilege block so this function must be package-private. static boolean getBooleanProperty(final String propName) { try { boolean answer = AccessController.doPrivileged((java.security.PrivilegedAction<Boolean>) () -> { String propVal = System.getProperty(propName); return "true".equals(propVal.toLowerCase()); }); return answer; } catch (Exception any) { } return false; } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de