You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
809 B
40 lines
809 B
1 year ago
|
package com.fine.theme.icon;
|
||
|
|
||
|
import com.fr.general.IOUtils;
|
||
|
import com.fr.io.utils.ResourceIOUtils;
|
||
|
import com.fr.third.errorprone.annotations.Immutable;
|
||
|
|
||
|
import java.io.InputStream;
|
||
|
|
||
|
/**
|
||
|
* url图标资源
|
||
|
*
|
||
|
* @author vito
|
||
|
* @since 11.0
|
||
|
* Created on 2023/11/15
|
||
|
*/
|
||
|
@Immutable
|
||
|
public class UrlIconResource implements IconResource {
|
||
|
|
||
|
private final String path;
|
||
|
|
||
|
public UrlIconResource(String path) {
|
||
|
this.path = path;
|
||
|
}
|
||
|
|
||
|
public String getPath() {
|
||
|
return path;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public InputStream getInputStream() {
|
||
|
return getInputStream(path);
|
||
|
}
|
||
|
|
||
|
|
||
|
private InputStream getInputStream(String path) {
|
||
|
InputStream inputStream = IOUtils.getInputStream(path);
|
||
|
return inputStream != null ? inputStream : ResourceIOUtils.read(path);
|
||
|
}
|
||
|
}
|