mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-26 17:21:53 +08:00
注释标点符号和汉字空格
This commit is contained in:
commit
b5f97f69d3
@ -28,7 +28,7 @@ public class FtpFileClient extends AbstractFileClient<FtpFileClientConfig> {
|
|||||||
@Override
|
@Override
|
||||||
protected void doInit() {
|
protected void doInit() {
|
||||||
// 把配置的 \ 替换成 /, 如果路径配置 \a\test, 替换成 /a/test, 替换方法已经处理 null 情况
|
// 把配置的 \ 替换成 /, 如果路径配置 \a\test, 替换成 /a/test, 替换方法已经处理 null 情况
|
||||||
config.setBasePath(StrUtil.replace(config.getBasePath(),StrUtil.BACKSLASH,StrUtil.SLASH));
|
config.setBasePath(StrUtil.replace(config.getBasePath(), StrUtil.BACKSLASH, StrUtil.SLASH));
|
||||||
// ftp的路径是 / 结尾
|
// ftp的路径是 / 结尾
|
||||||
if (!config.getBasePath().endsWith(StrUtil.SLASH)) {
|
if (!config.getBasePath().endsWith(StrUtil.SLASH)) {
|
||||||
config.setBasePath(config.getBasePath() + StrUtil.SLASH);
|
config.setBasePath(config.getBasePath() + StrUtil.SLASH);
|
||||||
|
Loading…
Reference in New Issue
Block a user