⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 system.java

📁 俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)的全部源代码。
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* System.java -- useful methods to interface with the system   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package java.lang;import java.io.*;import java.util.Properties;import java.util.PropertyPermission;import gnu.classpath.Configuration;/** * System represents system-wide resources; things that represent the * general environment.  As such, all methods are static. * * @author John Keiser * @author Eric Blake <ebb9@email.byu.edu> * @since 1.0 * @status still missing 1.4 functionality */public final class System{  // WARNING: System is a CORE class in the bootstrap cycle. See the comments  // in vm/reference/java/lang/Runtime for implications of this fact.  /**   * Add to the default properties. The field is stored in Runtime, because   * of the bootstrap sequence; but this adds several useful properties to   * the defaults. Once the default is stabilized, it should not be modified;   * instead it is passed as a parent properties for fast setup of the   * defaults when calling <code>setProperties(null)</code>.   */  static  {    // Note that this loadLibrary() takes precedence over the one in Object,    // since Object.<clinit> is waiting for System.<clinit> to complete    // first; but loading a library twice is harmless.    if (Configuration.INIT_LOAD_LIBRARY)      loadLibrary("javalang");    Properties defaultProperties = Runtime.defaultProperties;    // Set base URL if not already set.    if (defaultProperties.get("gnu.classpath.home.url") == null)      defaultProperties.put("gnu.classpath.home.url",			    "file://"			    + defaultProperties.get("gnu.classpath.home")			    + "/lib");    // Set short name if not already set.    if (defaultProperties.get("gnu.classpath.vm.shortname") == null)      {	String value = defaultProperties.getProperty("java.vm.name");	int index = value.lastIndexOf(' ');	if (index != -1)	  value = value.substring(index + 1);	defaultProperties.put("gnu.classpath.vm.shortname", value);      }    defaultProperties.put("gnu.cpu.endian",			  isWordsBigEndian() ? "big" : "little");    // XXX FIXME - Temp hack for old systems that set the wrong property    if (defaultProperties.get("java.io.tmpdir") == null)      defaultProperties.put("java.io.tmpdir",                            defaultProperties.get("java.tmpdir"));  }  /**   * Stores the current system properties. This can be modified by   * {@link #setProperties(Properties)}, but will never be null, because   * setProperties(null) sucks in the default properties.   */  // Note that we use clone here and not new.  Some programs assume  // that the system properties do not have a parent.  private static Properties properties    = (Properties) Runtime.defaultProperties.clone();  /**   * The standard InputStream. This is assigned at startup and starts its   * life perfectly valid. Although it is marked final, you can change it   * using {@link #setIn(InputStream)} through some hefty VM magic.   *   * <p>This corresponds to the C stdin and C++ cin variables, which   * typically input from the keyboard, but may be used to pipe input from   * other processes or files.  That should all be transparent to you,   * however.   */  public static final InputStream in    = new BufferedInputStream(new FileInputStream(FileDescriptor.in));  /**   * The standard output PrintStream.  This is assigned at startup and   * starts its life perfectly valid. Although it is marked final, you can   * change it using {@link #setOut(PrintStream)} through some hefty VM magic.   *   * <p>This corresponds to the C stdout and C++ cout variables, which   * typically output normal messages to the screen, but may be used to pipe   * output to other processes or files.  That should all be transparent to   * you, however.   */  public static final PrintStream out    = new PrintStream(new BufferedOutputStream(new FileOutputStream(FileDescriptor.out)), true);  /**   * The standard output PrintStream.  This is assigned at startup and   * starts its life perfectly valid. Although it is marked final, you can   * change it using {@link #setOut(PrintStream)} through some hefty VM magic.   *   * <p>This corresponds to the C stderr and C++ cerr variables, which   * typically output error messages to the screen, but may be used to pipe   * output to other processes or files.  That should all be transparent to   * you, however.   */  public static final PrintStream err    = new PrintStream(new BufferedOutputStream(new FileOutputStream(FileDescriptor.err)), true);  /**   * This class is uninstantiable.   */  private System()  {  }  /**   * Set {@link #in} to a new InputStream. This uses some VM magic to change   * a "final" variable, so naturally there is a security check,   * <code>RuntimePermission("setIO")</code>.   *   * @param in the new InputStream   * @throws SecurityException if permission is denied   * @since 1.1   */  public static void setIn(InputStream in)  {    SecurityManager sm = Runtime.securityManager; // Be thread-safe.    if (sm != null)      sm.checkPermission(new RuntimePermission("setIO"));    setIn0(in);  }  /**   * Set {@link #out} to a new PrintStream. This uses some VM magic to change   * a "final" variable, so naturally there is a security check,   * <code>RuntimePermission("setIO")</code>.   *   * @param out the new PrintStream   * @throws SecurityException if permission is denied   * @since 1.1   */  public static void setOut(PrintStream out)  {    SecurityManager sm = Runtime.securityManager; // Be thread-safe.    if (sm != null)      sm.checkPermission(new RuntimePermission("setIO"));    setOut0(out);  }  /**   * Set {@link #err} to a new PrintStream. This uses some VM magic to change   * a "final" variable, so naturally there is a security check,   * <code>RuntimePermission("setIO")</code>.   *   * @param err the new PrintStream   * @throws SecurityException if permission is denied   * @since 1.1   */  public static void setErr(PrintStream err)  {    SecurityManager sm = Runtime.securityManager; // Be thread-safe.    if (sm != null)      sm.checkPermission(new RuntimePermission("setIO"));    setErr0(err);  }  /**   * Set the current SecurityManager. If a security manager already exists,   * then <code>RuntimePermission("setSecurityManager")</code> is checked   * first. Since this permission is denied by the default security manager,   * setting the security manager is often an irreversible action.   *   * <STRONG>Spec Note:</STRONG> Don't ask me, I didn't write it.  It looks   * pretty vulnerable; whoever gets to the gate first gets to set the policy.   * There is probably some way to set the original security manager as a   * command line argument to the VM, but I don't know it.   *   * @param sm the new SecurityManager   * @throws SecurityException if permission is denied   */  public synchronized static void setSecurityManager(SecurityManager sm)  {    // Implementation note: the field lives in Runtime because of bootstrap    // initialization issues. This method is synchronized so that no other    // thread changes it to null before this thread makes the change.    if (Runtime.securityManager != null)      Runtime.securityManager.checkPermission        (new RuntimePermission("setSecurityManager"));    Runtime.securityManager = sm;  }  /**   * Get the current SecurityManager. If the SecurityManager has not been   * set yet, then this method returns null.   *   * @return the current SecurityManager, or null   */  public static SecurityManager getSecurityManager()  {    // Implementation note: the field lives in Runtime because of bootstrap    // initialization issues.    return Runtime.securityManager;  }  /**   * Get the current time, measured in the number of milliseconds from the   * beginning of Jan. 1, 1970. This is gathered from the system clock, with   * any attendant incorrectness (it may be timezone dependent).   *   * @return the current time   * @see java.util.Date   */  public static native long currentTimeMillis();  /**   * Copy one array onto another from <code>src[srcStart]</code> ...   * <code>src[srcStart+len-1]</code> to <code>dest[destStart]</code> ...   * <code>dest[destStart+len-1]</code>. First, the arguments are validated:   * neither array may be null, they must be of compatible types, and the   * start and length must fit within both arrays. Then the copying starts,   * and proceeds through increasing slots.  If src and dest are the same   * array, this will appear to copy the data to a temporary location first.   * An ArrayStoreException in the middle of copying will leave earlier   * elements copied, but later elements unchanged.   *   * @param src the array to copy elements from   * @param srcStart the starting position in src   * @param dest the array to copy elements to   * @param destStart the starting position in dest   * @param len the number of elements to copy   * @throws NullPointerException if src or dest is null   * @throws ArrayStoreException if src or dest is not an array, if they are   *         not compatible array types, or if an incompatible runtime type   *         is stored in dest   * @throws IndexOutOfBoundsException if len is negative, or if the start or   *         end copy position in either array is out of bounds   */  public static native void arraycopy(Object src, int srcStart,				      Object dest, int destStart, int len);  /**   * Get a hash code computed by the VM for the Object. This hash code will   * be the same as Object's hashCode() method.  It is usually some   * convolution of the pointer to the Object internal to the VM.  It   * follows standard hash code rules, in that it will remain the same for a   * given Object for the lifetime of that Object.   *   * @param o the Object to get the hash code for   * @return the VM-dependent hash code for this Object   * @since 1.1   */  public static native int identityHashCode(Object o);  /**   * Get all the system properties at once. A security check may be performed,   * <code>checkPropertiesAccess</code>. Note that a security manager may

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -