|
@@ -12,14 +12,18 @@ public class UrlConvertUtils {
|
|
|
|
|
|
public static List<String> urlConvert(String hostIpPort, String url){
|
|
|
ArrayList<String> arrayList = new ArrayList<>();
|
|
|
- if (StringUtils.isNotEmpty(url)) {
|
|
|
- List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(url, FileUrlObject.class);
|
|
|
- if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
|
|
|
- //遍历每个元素的数组对象,对元素的url对象进行拼接
|
|
|
- for (FileUrlObject y : fileUrlObjectList) {
|
|
|
- String hotPictureUrlsAfterConvert =
|
|
|
- hostIpPort + "/" + y.getUploadPath() + "/" + y.getFilename();
|
|
|
- arrayList.add(hotPictureUrlsAfterConvert);
|
|
|
+ if(url.contains("https")){
|
|
|
+ arrayList.add(url);
|
|
|
+ }else {
|
|
|
+ if (StringUtils.isNotEmpty(url)) {
|
|
|
+ List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(url, FileUrlObject.class);
|
|
|
+ if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
|
|
|
+ //遍历每个元素的数组对象,对元素的url对象进行拼接
|
|
|
+ for (FileUrlObject y : fileUrlObjectList) {
|
|
|
+ String hotPictureUrlsAfterConvert =
|
|
|
+ hostIpPort + "/" + y.getUploadPath() + "/" + y.getFilename();
|
|
|
+ arrayList.add(hotPictureUrlsAfterConvert);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|