All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jchanghong.core.convert.impl.URLConverter Maven / Gradle / Ivy

The newest version!
package com.jchanghong.core.convert.impl;

import java.io.File;
import java.net.URI;
import java.net.URL;

import com.jchanghong.core.convert.AbstractConverter;

/**
 * URL对象转换器
 * @author Looly
 *
 */
public class URLConverter extends AbstractConverter{
	private static final long serialVersionUID = 1L;

	@Override
	protected URL convertInternal(Object value) {
		try {
			if(value instanceof File){
				return ((File)value).toURI().toURL();
			}
			
			if(value instanceof URI){
				return ((URI)value).toURL();
			}
			return new URL(convertToStr(value));
		} catch (Exception e) {
			// Ignore Exception
		}
		return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy