Excel导入导出支持多图片

This commit is contained in:
RuoYi
2025-04-25 10:09:21 +08:00
parent 87173cbe75
commit 27a037ed3d
2 changed files with 42 additions and 33 deletions

View File

@ -381,6 +381,18 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils
return new HashSet<String>(str2List(str, sep, true, false));
}
/**
* 字符串转list
*
* @param str 字符串
* @param sep 分隔符
* @return list集合
*/
public static final List<String> str2List(String str, String sep)
{
return str2List(str, sep, true, false);
}
/**
* 字符串转list
*