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

📄 imagefileview.java

📁 cms是开源的框架
💻 JAVA
字号:
/*
 * File   : $Source: /usr/local/cvs/opencms/src-components/org/opencms/applet/upload/ImageFileView.java,v $
 * Date   : $Date: 2005/06/27 14:21:17 $
 * Version: $Revision: 1.9 $
 *
 * This library is part of OpenCms -
 * the Open Source Content Mananagement System
 *
 * Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * For further information about Alkacon Software GmbH, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.opencms.applet.upload;

import java.io.File;
import java.net.URL;
import java.util.HashMap;
import java.util.StringTokenizer;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.filechooser.FileView;

/**
 * Image File View class, plugs image preview into the file selector box.<p>
 * 
 * Based on the Java 1.4 example.<p>
 * 
 * @author Michael Emmerich 
 *
 * @version $Revision: 1.9 $ 
 * 
 * @since 6.0.0 
 */
public class ImageFileView extends FileView {

    /** Extension storage. */
    private HashMap m_extensions;

    /** The path to OpenCms, required to read the images. */
    private String m_opencms;

    /**
     * Creates a new ImageFile Vew object.<p>
     */
    public ImageFileView() {

        super();
    }

    /**
     * Creates a new ImageFile Vew object.<p>
     * 
     * @param opencms the complete path to opencms
     * @param fileExtensions list of file extensions to select the correct icons
     */
    public ImageFileView(String opencms, String fileExtensions) {
        
        super();
   
        m_opencms = opencms;
        m_extensions = extractExtensions(fileExtensions);

    }

    /**
     * @see javax.swing.filechooser.FileView#getDescription(java.io.File)
     */
    public String getDescription(File f) {

        return null;
    }

    /**
     * @see javax.swing.filechooser.FileView#getIcon(java.io.File)
     */
    public Icon getIcon(File f) {

        String extension = FileUploadUtils.getExtension(f);
        // set the default icon
        Icon icon = null;

        if (f.isDirectory()) {

            icon = (Icon)m_extensions.get("FOLDER");
        } else {

            icon = (Icon)m_extensions.get(extension);
        }
        // if no icon was found, set it to the default
        if (icon == null) {

            icon = (Icon)m_extensions.get("txt");
        }

        return icon;
    }

    /**
     * @see javax.swing.filechooser.FileView#getName(java.io.File)
     */
    public String getName(File f) {

        return null;
    }

    /**
     * @see javax.swing.filechooser.FileView#isTraversable(java.io.File)
     */
    public Boolean isTraversable(File f) {

        return null;
    }

    /**
     * Returns a resource image icon for a given path. <p>
     * 
     * The resource icon is chossen by the resource path, i.g. the resource type.
     * 
     * @param path the path of the resource
     * @return ImageIcon, or null if the path was invalid
     */
    private ImageIcon createImageIcon(String path) {

        try {
            URL imgURL = new URL(path);
            if (imgURL != null) {
               
                ImageIcon img = new ImageIcon(imgURL);
                return img;
            } else {
                System.err.println("Couldn't find file: " + path);
                return null;
            }
        } catch (Exception e) {
            System.err.println(e);
            return null;
        }
    }

    /**
     * Extracts the file extensions from the parameter String.<p>
     * 
     * @param fileExtensions list of file extensions and their file type
     * @return HashMap with file extension 
     */
    private HashMap extractExtensions(String fileExtensions) {

        HashMap extensions = new HashMap();
        // add a dummy extention for the folder
        fileExtensions += ",FOLDER=folder,";
        StringTokenizer tok = new StringTokenizer(fileExtensions, ",");
        // loop through the tokens
        // all tokens have the format "extension=type"    
        while (tok.hasMoreElements()) {
            String token = tok.nextToken();
            // now extract the file extension and the type
            String extension = token.substring(0, token.indexOf("="));
            String type = token.substring(token.indexOf("=") + 1);
            // try to load the image     
            ImageIcon icon = createImageIcon(m_opencms + type + ".gif");
            extensions.put(extension, icon);
     
        }
        return extensions;
    }

}

⌨️ 快捷键说明

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