|
Java example source code file (DefaultPaths.java)
The DefaultPaths.java Java example source code/* * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.jmx.snmp.defaults; // java import // import java.io.File; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.util.StringTokenizer; /** * This class represents a set of default directories used by Java DMK. * * <p>This API is a Sun Microsystems internal API and is subject * to change without notice.</b> * @since 1.5 */ public class DefaultPaths { private static final String INSTALL_PATH_RESOURCE_NAME = "com/sun/jdmk/defaults/install.path"; // private constructor defined to "hide" the default public constructor private DefaultPaths() { } // PUBLIC STATIC METHODS //---------------------- /** * Returns the installation directory for Java DMK. * * The default value of the installation directory is: * <CODE><base_dir> + File.separator + SUNWjdmk + File.separator + jdmk5.0 * * @return Java DMK installation directory. */ public static String getInstallDir() { if (installDir == null) return useRessourceFile(); else return installDir; } /** * Returns the installation directory for Java DMK concatenated with dirname. * * The default value of the installation directory is: * <CODE><base_dir> + File.separator + SUNWjdmk + File.separator + jdmk5.0 * * @param dirname The directory to be appended. * * @return Java DMK installation directory + <CODE>File.separator + Other Java examples (source code examples)Here is a short list of links related to this Java DefaultPaths.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.