com.jchanghong.core.convert.impl.URIConverter 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;
/**
* URI对象转换器
* @author Looly
*
*/
public class URIConverter extends AbstractConverter {
private static final long serialVersionUID = 1L;
@Override
protected URI convertInternal(Object value) {
try {
if(value instanceof File){
return ((File)value).toURI();
}
if(value instanceof URL){
return ((URL)value).toURI();
}
return new URI(convertToStr(value));
} catch (Exception e) {
// Ignore Exception
}
return null;
}
}