org.frameworkset.util.io.ResourceEditor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-util Show documentation
Show all versions of bboss-util Show documentation
bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com
/*
* Copyright 2008 biaoping.yin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.frameworkset.util.io;
import org.frameworkset.util.Assert;
import org.frameworkset.util.SystemPropertyUtils;
import com.frameworkset.util.EditorInf;
import com.frameworkset.util.SimpleStringUtil;
/**
* Title: ResourceEditor.java
* Description:
* bboss workgroup
* Copyright (c) 2008
* @Date 2010-10-14
* @author biaoping.yin
* @version 1.0
*/
public class ResourceEditor implements EditorInf {
private final ResourceLoader resourceLoader;
/**
* Create a new instance of the {@link ResourceEditor} class
* using a {@link DefaultResourceLoader}.
*/
public ResourceEditor() {
this(new DefaultResourceLoader());
}
/**
* Create a new instance of the {@link ResourceEditor} class
* using the given {@link ResourceLoader}.
* @param resourceLoader the ResourceLoader
to use
*/
public ResourceEditor(ResourceLoader resourceLoader) {
Assert.notNull(resourceLoader, "ResourceLoader must not be null");
this.resourceLoader = resourceLoader;
}
/**
* Resolve the given path, replacing placeholders with
* corresponding system property values if necessary.
* @param path the original file path
* @return the resolved file path
*/
protected String resolvePath(String path) {
return SystemPropertyUtils.resolvePlaceholders(path);
}
public Resource getValueFromObject(Object fromValue) {
// TODO Auto-generated method stub
return null;
}
public Resource getValueFromString(String text) {
if (SimpleStringUtil.hasText(text)) {
String locationToUse = resolvePath(text).trim();
return (this.resourceLoader.getResource(locationToUse));
}
else {
return null;
}
}
}