com.xiaoleilu.hutool.convert.impl.PathConverter Maven / Gradle / Ivy
package com.xiaoleilu.hutool.convert.impl;
import java.io.File;
import java.net.URI;
import java.net.URL;
import java.nio.file.Path;
import java.nio.file.Paths;
import com.xiaoleilu.hutool.convert.AbstractConverter;
/**
* 字符串转换器
* @author Looly
*
*/
public class PathConverter extends AbstractConverter{
@Override
protected Path convertInternal(Object value) {
try {
if(value instanceof URI){
return Paths.get((URI)value);
}
if(value instanceof URL){
return Paths.get(((URL)value).toURI());
}
if(value instanceof File){
return ((File)value).toPath();
}
return Paths.get(convertToStr(value));
} catch (Exception e) {
// Ignore Exception
}
return null;
}
}