feat(all): Modify Project Package Name cn.hutool->org.dromara.hutool

BREAKING CHANGE: 包名变更

Closes https://gitee.com/dromara/hutool/issues/I6SC4B
This commit is contained in:
yulin
2023-04-03 02:32:22 +08:00
parent 92807dc7a7
commit 4c154b3aa3
2072 changed files with 6967 additions and 6962 deletions

View File

@@ -10,11 +10,11 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop;
package org.dromara.hutool.extra.aop;
import cn.hutool.core.classloader.ClassLoaderUtil;
import cn.hutool.extra.aop.aspects.Aspect;
import cn.hutool.extra.aop.proxy.ProxyFactory;
import org.dromara.hutool.core.classloader.ClassLoaderUtil;
import org.dromara.hutool.extra.aop.aspects.Aspect;
import org.dromara.hutool.extra.aop.proxy.ProxyFactory;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Proxy;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.aspects;
package org.dromara.hutool.extra.aop.aspects;
import java.lang.reflect.Method;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.aspects;
package org.dromara.hutool.extra.aop.aspects;
import java.io.Serializable;
import java.lang.reflect.Method;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.aspects;
package org.dromara.hutool.extra.aop.aspects;
import cn.hutool.core.date.StopWatch;
import cn.hutool.core.lang.Console;
import org.dromara.hutool.core.date.StopWatch;
import org.dromara.hutool.core.lang.Console;
import java.lang.reflect.Method;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.aop.aspects;
package org.dromara.hutool.extra.aop.aspects;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.interceptor;
package org.dromara.hutool.extra.aop.interceptor;
import cn.hutool.extra.aop.aspects.Aspect;
import org.dromara.hutool.extra.aop.aspects.Aspect;
import net.sf.cglib.proxy.MethodInterceptor;
import net.sf.cglib.proxy.MethodProxy;

View File

@@ -10,11 +10,11 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.interceptor;
package org.dromara.hutool.extra.aop.interceptor;
import cn.hutool.core.reflect.ModifierUtil;
import cn.hutool.core.reflect.ReflectUtil;
import cn.hutool.extra.aop.aspects.Aspect;
import org.dromara.hutool.core.reflect.ModifierUtil;
import org.dromara.hutool.core.reflect.ReflectUtil;
import org.dromara.hutool.extra.aop.aspects.Aspect;
import java.io.Serializable;
import java.lang.reflect.InvocationHandler;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.interceptor;
package org.dromara.hutool.extra.aop.interceptor;
import cn.hutool.extra.aop.aspects.Aspect;
import org.dromara.hutool.extra.aop.aspects.Aspect;
import org.springframework.cglib.proxy.MethodInterceptor;
import org.springframework.cglib.proxy.MethodProxy;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.aop.interceptor;
package org.dromara.hutool.extra.aop.interceptor;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.aop;
package org.dromara.hutool.extra.aop;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.proxy;
package org.dromara.hutool.extra.aop.proxy;
import cn.hutool.extra.aop.aspects.Aspect;
import cn.hutool.extra.aop.interceptor.CglibInterceptor;
import org.dromara.hutool.extra.aop.aspects.Aspect;
import org.dromara.hutool.extra.aop.interceptor.CglibInterceptor;
import net.sf.cglib.proxy.Enhancer;
/**

View File

@@ -10,11 +10,11 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.proxy;
package org.dromara.hutool.extra.aop.proxy;
import cn.hutool.extra.aop.ProxyUtil;
import cn.hutool.extra.aop.aspects.Aspect;
import cn.hutool.extra.aop.interceptor.JdkInterceptor;
import org.dromara.hutool.extra.aop.ProxyUtil;
import org.dromara.hutool.extra.aop.aspects.Aspect;
import org.dromara.hutool.extra.aop.interceptor.JdkInterceptor;
/**
* JDK实现的切面代理

View File

@@ -10,11 +10,11 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.proxy;
package org.dromara.hutool.extra.aop.proxy;
import cn.hutool.core.reflect.ConstructorUtil;
import cn.hutool.core.util.ServiceLoaderUtil;
import cn.hutool.extra.aop.aspects.Aspect;
import org.dromara.hutool.core.reflect.ConstructorUtil;
import org.dromara.hutool.core.util.ServiceLoaderUtil;
import org.dromara.hutool.extra.aop.aspects.Aspect;
import java.io.Serializable;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.aop.proxy;
package org.dromara.hutool.extra.aop.proxy;
import cn.hutool.extra.aop.aspects.Aspect;
import cn.hutool.extra.aop.interceptor.SpringCglibInterceptor;
import org.dromara.hutool.extra.aop.aspects.Aspect;
import org.dromara.hutool.extra.aop.interceptor.SpringCglibInterceptor;
import org.springframework.cglib.proxy.Enhancer;
/**

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.aop.proxy;
package org.dromara.hutool.extra.aop.proxy;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.cglib;
package org.dromara.hutool.extra.cglib;
import cn.hutool.core.map.WeakConcurrentMap;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.map.WeakConcurrentMap;
import org.dromara.hutool.core.text.StrUtil;
import net.sf.cglib.beans.BeanCopier;
import net.sf.cglib.core.Converter;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.cglib;
package org.dromara.hutool.extra.cglib;
import cn.hutool.core.lang.Assert;
import cn.hutool.core.reflect.ConstructorUtil;
import org.dromara.hutool.core.lang.Assert;
import org.dromara.hutool.core.reflect.ConstructorUtil;
import net.sf.cglib.beans.BeanCopier;
import net.sf.cglib.beans.BeanMap;
import net.sf.cglib.core.Converter;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.cglib;
package org.dromara.hutool.extra.cglib;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.compress;
package org.dromara.hutool.extra.compress;
import cn.hutool.core.exceptions.ExceptionUtil;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.exceptions.ExceptionUtil;
import org.dromara.hutool.core.text.StrUtil;
/**
* 压缩解压异常语言异常

View File

@@ -10,16 +10,16 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.compress;
package org.dromara.hutool.extra.compress;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.text.StrUtil;
import cn.hutool.extra.compress.archiver.Archiver;
import cn.hutool.extra.compress.archiver.SevenZArchiver;
import cn.hutool.extra.compress.archiver.StreamArchiver;
import cn.hutool.extra.compress.extractor.Extractor;
import cn.hutool.extra.compress.extractor.SevenZExtractor;
import cn.hutool.extra.compress.extractor.StreamExtractor;
import org.dromara.hutool.core.io.IoUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.extra.compress.archiver.Archiver;
import org.dromara.hutool.extra.compress.archiver.SevenZArchiver;
import org.dromara.hutool.extra.compress.archiver.StreamArchiver;
import org.dromara.hutool.extra.compress.extractor.Extractor;
import org.dromara.hutool.extra.compress.extractor.SevenZExtractor;
import org.dromara.hutool.extra.compress.extractor.StreamExtractor;
import org.apache.commons.compress.archivers.ArchiveStreamFactory;
import org.apache.commons.compress.archivers.StreamingNotSupportedException;
import org.apache.commons.compress.compressors.CompressorException;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.compress.archiver;
package org.dromara.hutool.extra.compress.archiver;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.text.StrUtil;
import java.io.Closeable;
import java.io.File;

View File

@@ -10,13 +10,13 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.compress.archiver;
package org.dromara.hutool.extra.compress.archiver;
import cn.hutool.core.io.file.FileUtil;
import cn.hutool.core.io.IORuntimeException;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.text.StrUtil;
import cn.hutool.core.array.ArrayUtil;
import org.dromara.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.io.IORuntimeException;
import org.dromara.hutool.core.io.IoUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.array.ArrayUtil;
import org.apache.commons.compress.archivers.sevenz.SevenZOutputFile;
import org.apache.commons.compress.utils.SeekableInMemoryByteChannel;

View File

@@ -10,14 +10,14 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.compress.archiver;
package org.dromara.hutool.extra.compress.archiver;
import cn.hutool.core.io.file.FileUtil;
import cn.hutool.core.io.IORuntimeException;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.text.StrUtil;
import cn.hutool.core.array.ArrayUtil;
import cn.hutool.extra.compress.CompressException;
import org.dromara.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.io.IORuntimeException;
import org.dromara.hutool.core.io.IoUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.array.ArrayUtil;
import org.dromara.hutool.extra.compress.CompressException;
import org.apache.commons.compress.archivers.ArchiveException;
import org.apache.commons.compress.archivers.ArchiveOutputStream;
import org.apache.commons.compress.archivers.ArchiveStreamFactory;

View File

@@ -20,4 +20,4 @@
* @author looly
*
*/
package cn.hutool.extra.compress.archiver;
package org.dromara.hutool.extra.compress.archiver;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.compress.extractor;
package org.dromara.hutool.extra.compress.extractor;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.apache.commons.compress.archivers.ArchiveEntry;
import java.io.Closeable;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.compress.extractor;
package org.dromara.hutool.extra.compress.extractor;
import org.apache.commons.compress.archivers.sevenz.SevenZArchiveEntry;
import org.apache.commons.compress.archivers.sevenz.SevenZFile;

View File

@@ -10,12 +10,12 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.compress.extractor;
package org.dromara.hutool.extra.compress.extractor;
import cn.hutool.core.io.IORuntimeException;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.io.file.FileUtil;
import cn.hutool.core.lang.Assert;
import org.dromara.hutool.core.io.IORuntimeException;
import org.dromara.hutool.core.io.IoUtil;
import org.dromara.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.lang.Assert;
import org.apache.commons.compress.archivers.ArchiveEntry;
import org.apache.commons.compress.archivers.sevenz.SevenZArchiveEntry;
import org.apache.commons.compress.archivers.sevenz.SevenZFile;

View File

@@ -10,14 +10,14 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.compress.extractor;
package org.dromara.hutool.extra.compress.extractor;
import cn.hutool.core.io.file.FileUtil;
import cn.hutool.core.io.IORuntimeException;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.lang.Assert;
import cn.hutool.core.text.StrUtil;
import cn.hutool.extra.compress.CompressException;
import org.dromara.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.io.IORuntimeException;
import org.dromara.hutool.core.io.IoUtil;
import org.dromara.hutool.core.lang.Assert;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.extra.compress.CompressException;
import org.apache.commons.compress.archivers.ArchiveEntry;
import org.apache.commons.compress.archivers.ArchiveException;
import org.apache.commons.compress.archivers.ArchiveInputStream;

View File

@@ -20,4 +20,4 @@
* @author looly
*
*/
package cn.hutool.extra.compress.extractor;
package org.dromara.hutool.extra.compress.extractor;

View File

@@ -22,4 +22,4 @@
* @author looly
*
*/
package cn.hutool.extra.compress;
package org.dromara.hutool.extra.compress;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.emoji;
package org.dromara.hutool.extra.emoji;
import com.vdurmont.emoji.Emoji;
import com.vdurmont.emoji.EmojiManager;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.emoji;
package org.dromara.hutool.extra.emoji;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression;
package org.dromara.hutool.extra.expression;
import java.util.Map;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression;
package org.dromara.hutool.extra.expression;
import cn.hutool.core.exceptions.ExceptionUtil;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.exceptions.ExceptionUtil;
import org.dromara.hutool.core.text.StrUtil;
/**
* 表达式语言异常

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression;
package org.dromara.hutool.extra.expression;
import cn.hutool.extra.expression.engine.ExpressionFactory;
import org.dromara.hutool.extra.expression.engine.ExpressionFactory;
import java.util.Map;

View File

@@ -10,15 +10,15 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression.engine;
package org.dromara.hutool.extra.expression.engine;
import cn.hutool.core.lang.Singleton;
import cn.hutool.core.util.ServiceLoaderUtil;
import cn.hutool.core.text.StrUtil;
import cn.hutool.log.StaticLog;
import org.dromara.hutool.core.lang.Singleton;
import org.dromara.hutool.core.util.ServiceLoaderUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.log.StaticLog;
import cn.hutool.extra.expression.ExpressionEngine;
import cn.hutool.extra.expression.ExpressionException;
import org.dromara.hutool.extra.expression.ExpressionEngine;
import org.dromara.hutool.extra.expression.ExpressionException;
/**
* 表达式语言引擎工厂类用于根据用户引入的表达式jar自动创建对应的引擎对象

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression.engine.aviator;
package org.dromara.hutool.extra.expression.engine.aviator;
import cn.hutool.extra.expression.ExpressionEngine;
import org.dromara.hutool.extra.expression.ExpressionEngine;
import com.googlecode.aviator.AviatorEvaluator;
import com.googlecode.aviator.AviatorEvaluatorInstance;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.expression.engine.aviator;
package org.dromara.hutool.extra.expression.engine.aviator;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression.engine.jexl;
package org.dromara.hutool.extra.expression.engine.jexl;
import cn.hutool.extra.expression.ExpressionEngine;
import org.dromara.hutool.extra.expression.ExpressionEngine;
import org.apache.commons.jexl3.JexlBuilder;
import org.apache.commons.jexl3.MapContext;

View File

@@ -15,4 +15,4 @@
*
* @author looly
*/
package cn.hutool.extra.expression.engine.jexl;
package org.dromara.hutool.extra.expression.engine.jexl;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression.engine.jfireel;
package org.dromara.hutool.extra.expression.engine.jfireel;
import cn.hutool.extra.expression.ExpressionEngine;
import org.dromara.hutool.extra.expression.ExpressionEngine;
import com.jfirer.jfireel.expression.Expression;
import java.util.Map;

View File

@@ -16,4 +16,4 @@
*
* @author looly
*/
package cn.hutool.extra.expression.engine.jfireel;
package org.dromara.hutool.extra.expression.engine.jfireel;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression.engine.mvel;
package org.dromara.hutool.extra.expression.engine.mvel;
import cn.hutool.extra.expression.ExpressionEngine;
import org.dromara.hutool.extra.expression.ExpressionEngine;
import org.mvel2.MVEL;
import java.util.Map;

View File

@@ -16,4 +16,4 @@
*
* @author looly
*/
package cn.hutool.extra.expression.engine.mvel;
package org.dromara.hutool.extra.expression.engine.mvel;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.expression.engine;
package org.dromara.hutool.extra.expression.engine;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression.engine.qlexpress;
package org.dromara.hutool.extra.expression.engine.qlexpress;
import cn.hutool.extra.expression.ExpressionEngine;
import cn.hutool.extra.expression.ExpressionException;
import org.dromara.hutool.extra.expression.ExpressionEngine;
import org.dromara.hutool.extra.expression.ExpressionException;
import com.ql.util.express.DefaultContext;
import com.ql.util.express.ExpressRunner;

View File

@@ -16,4 +16,4 @@
*
* @author looly
*/
package cn.hutool.extra.expression.engine.qlexpress;
package org.dromara.hutool.extra.expression.engine.qlexpress;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression.engine.rhino;
package org.dromara.hutool.extra.expression.engine.rhino;
import cn.hutool.core.map.MapUtil;
import cn.hutool.extra.expression.ExpressionEngine;
import org.dromara.hutool.core.map.MapUtil;
import org.dromara.hutool.extra.expression.ExpressionEngine;
import org.mozilla.javascript.Context;
import org.mozilla.javascript.Scriptable;
import org.mozilla.javascript.ScriptableObject;

View File

@@ -16,4 +16,4 @@
*
* @author lzpeng
*/
package cn.hutool.extra.expression.engine.rhino;
package org.dromara.hutool.extra.expression.engine.rhino;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.expression.engine.spel;
package org.dromara.hutool.extra.expression.engine.spel;
import cn.hutool.extra.expression.ExpressionEngine;
import org.dromara.hutool.extra.expression.ExpressionEngine;
import org.springframework.expression.EvaluationContext;
import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;

View File

@@ -16,4 +16,4 @@
*
* @author looly
*/
package cn.hutool.extra.expression.engine.spel;
package org.dromara.hutool.extra.expression.engine.spel;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.expression;
package org.dromara.hutool.extra.expression;

View File

@@ -10,14 +10,14 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.ftp;
package org.dromara.hutool.extra.ftp;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.io.file.FileUtil;
import cn.hutool.core.io.file.FileNameUtil;
import cn.hutool.core.text.StrUtil;
import cn.hutool.core.util.CharUtil;
import cn.hutool.core.util.CharsetUtil;
import org.dromara.hutool.core.collection.CollUtil;
import org.dromara.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.io.file.FileNameUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.util.CharUtil;
import org.dromara.hutool.core.util.CharsetUtil;
import java.io.Closeable;
import java.io.File;

View File

@@ -10,16 +10,16 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.ftp;
package org.dromara.hutool.extra.ftp;
import cn.hutool.core.collection.ListUtil;
import cn.hutool.core.io.file.FileUtil;
import cn.hutool.core.io.IORuntimeException;
import cn.hutool.core.io.file.FileNameUtil;
import cn.hutool.core.lang.Assert;
import cn.hutool.core.text.StrUtil;
import cn.hutool.core.array.ArrayUtil;
import cn.hutool.core.util.CharsetUtil;
import org.dromara.hutool.core.collection.ListUtil;
import org.dromara.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.io.IORuntimeException;
import org.dromara.hutool.core.io.file.FileNameUtil;
import org.dromara.hutool.core.lang.Assert;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.array.ArrayUtil;
import org.dromara.hutool.core.util.CharsetUtil;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPClientConfig;
import org.apache.commons.net.ftp.FTPFile;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.ftp;
package org.dromara.hutool.extra.ftp;
import java.io.Serializable;
import java.nio.charset.Charset;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.ftp;
package org.dromara.hutool.extra.ftp;
import cn.hutool.core.exceptions.ExceptionUtil;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.exceptions.ExceptionUtil;
import org.dromara.hutool.core.text.StrUtil;
/**
* Ftp异常

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.ftp;
package org.dromara.hutool.extra.ftp;
/**
* FTP连接模式

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.ftp;
package org.dromara.hutool.extra.ftp;
import cn.hutool.core.lang.Assert;
import cn.hutool.core.net.NetUtil;
import org.dromara.hutool.core.lang.Assert;
import org.dromara.hutool.core.net.NetUtil;
import org.apache.ftpserver.ConnectionConfig;
import org.apache.ftpserver.FtpServerFactory;
import org.apache.ftpserver.ftplet.Authority;
@@ -227,7 +227,7 @@ public class SimpleFtpServer {
try {
serverFactory.createServer().start();
} catch (final org.apache.ftpserver.ftplet.FtpException e) {
throw new cn.hutool.extra.ftp.FtpException(e);
throw new FtpException(e);
}
}
}

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.ftp;
package org.dromara.hutool.extra.ftp;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.mail;
package org.dromara.hutool.extra.mail;
import cn.hutool.core.io.IORuntimeException;
import org.dromara.hutool.core.io.IORuntimeException;
/**
* 全局邮件帐户依赖于邮件配置文件{@link MailAccount#MAIL_SETTING_PATHS}

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.mail;
package org.dromara.hutool.extra.mail;
import cn.hutool.core.array.ArrayUtil;
import org.dromara.hutool.core.array.ArrayUtil;
import jakarta.mail.internet.AddressException;
import jakarta.mail.internet.InternetAddress;

View File

@@ -10,15 +10,15 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.mail;
package org.dromara.hutool.extra.mail;
import cn.hutool.core.lang.builder.Builder;
import cn.hutool.core.io.file.FileUtil;
import cn.hutool.core.io.IORuntimeException;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.text.StrUtil;
import cn.hutool.core.array.ArrayUtil;
import cn.hutool.core.util.ObjUtil;
import org.dromara.hutool.core.lang.builder.Builder;
import org.dromara.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.io.IORuntimeException;
import org.dromara.hutool.core.io.IoUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.array.ArrayUtil;
import org.dromara.hutool.core.util.ObjUtil;
import jakarta.activation.DataHandler;
import jakarta.activation.DataSource;

View File

@@ -10,12 +10,12 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.mail;
package org.dromara.hutool.extra.mail;
import cn.hutool.core.util.CharsetUtil;
import cn.hutool.core.util.ObjUtil;
import cn.hutool.core.text.StrUtil;
import cn.hutool.setting.Setting;
import org.dromara.hutool.core.util.CharsetUtil;
import org.dromara.hutool.core.util.ObjUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.setting.Setting;
import java.io.Serializable;
import java.nio.charset.Charset;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.mail;
package org.dromara.hutool.extra.mail;
import cn.hutool.core.exceptions.ExceptionUtil;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.exceptions.ExceptionUtil;
import org.dromara.hutool.core.text.StrUtil;
/**
* 邮件异常

View File

@@ -10,15 +10,15 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.mail;
package org.dromara.hutool.extra.mail;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.collection.ListUtil;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.map.MapUtil;
import cn.hutool.core.text.split.SplitUtil;
import cn.hutool.core.util.CharUtil;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.collection.CollUtil;
import org.dromara.hutool.core.collection.ListUtil;
import org.dromara.hutool.core.io.IoUtil;
import org.dromara.hutool.core.map.MapUtil;
import org.dromara.hutool.core.text.split.SplitUtil;
import org.dromara.hutool.core.util.CharUtil;
import org.dromara.hutool.core.text.StrUtil;
import jakarta.mail.Authenticator;
import jakarta.mail.Session;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.mail;
package org.dromara.hutool.extra.mail;
import jakarta.mail.Authenticator;
import jakarta.mail.PasswordAuthentication;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.mail;
package org.dromara.hutool.extra.mail;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.net.NetUtil;
import org.dromara.hutool.core.net.NetUtil;
import java.io.Serializable;
import java.net.InetAddress;

View File

@@ -10,11 +10,11 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.regex.ReUtil;
import cn.hutool.core.array.ArrayUtil;
import cn.hutool.core.util.SystemUtil;
import org.dromara.hutool.core.regex.ReUtil;
import org.dromara.hutool.core.array.ArrayUtil;
import org.dromara.hutool.core.util.SystemUtil;
import java.io.Serializable;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.text.split.SplitUtil;
import cn.hutool.core.util.SystemUtil;
import org.dromara.hutool.core.text.split.SplitUtil;
import org.dromara.hutool.core.util.SystemUtil;
import java.io.Serializable;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.util.SystemUtil;
import org.dromara.hutool.core.util.SystemUtil;
import java.io.Serializable;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.util.SystemUtil;
import org.dromara.hutool.core.util.SystemUtil;
import java.io.Serializable;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.util.SystemUtil;
import org.dromara.hutool.core.util.SystemUtil;
import java.io.Serializable;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.exceptions.ExceptionUtil;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.exceptions.ExceptionUtil;
import org.dromara.hutool.core.text.StrUtil;
/**
* FtpException异常

View File

@@ -10,11 +10,11 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.convert.Convert;
import cn.hutool.core.lang.Singleton;
import cn.hutool.core.util.ObjUtil;
import org.dromara.hutool.core.convert.Convert;
import org.dromara.hutool.core.lang.Singleton;
import org.dromara.hutool.core.util.ObjUtil;
import javax.management.MBeanServer;
import javax.management.ObjectName;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.util.SystemUtil;
import org.dromara.hutool.core.util.SystemUtil;
import java.io.Serializable;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.io.file.FileUtil;
import java.io.Serializable;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
/**
* 系统属性名称常量池

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;
import cn.hutool.core.text.StrUtil;
import cn.hutool.core.util.SystemUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.util.SystemUtil;
import java.io.File;
import java.io.Serializable;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management.oshi;
package org.dromara.hutool.extra.management.oshi;
import cn.hutool.core.math.NumberUtil;
import org.dromara.hutool.core.math.NumberUtil;
import oshi.hardware.CentralProcessor;
import java.text.DecimalFormat;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management.oshi;
package org.dromara.hutool.extra.management.oshi;
import oshi.hardware.CentralProcessor;
import oshi.util.Util;

View File

@@ -10,7 +10,7 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.management.oshi;
package org.dromara.hutool.extra.management.oshi;
import oshi.SystemInfo;
import oshi.hardware.CentralProcessor;

View File

@@ -17,4 +17,4 @@
* @author Looly
* @since 4.6.4
*/
package cn.hutool.extra.management.oshi;
package org.dromara.hutool.extra.management.oshi;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.management;
package org.dromara.hutool.extra.management;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra;
package org.dromara.hutool.extra;

View File

@@ -10,11 +10,11 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.pinyin;
package org.dromara.hutool.extra.pinyin;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.text.StrUtil;
import cn.hutool.core.text.split.SplitUtil;
import org.dromara.hutool.core.collection.CollUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.text.split.SplitUtil;
import java.util.List;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.pinyin;
package org.dromara.hutool.extra.pinyin;
import cn.hutool.core.exceptions.ExceptionUtil;
import cn.hutool.core.text.StrUtil;
import org.dromara.hutool.core.exceptions.ExceptionUtil;
import org.dromara.hutool.core.text.StrUtil;
/**
* 模板异常

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.pinyin;
package org.dromara.hutool.extra.pinyin;
import cn.hutool.core.text.StrUtil;
import cn.hutool.extra.pinyin.engine.PinyinFactory;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.extra.pinyin.engine.PinyinFactory;
/**
* 拼音工具类封装了TinyPinyinJPinyinPinyin4j通过SPI自动识别

View File

@@ -10,15 +10,15 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.pinyin.engine;
package org.dromara.hutool.extra.pinyin.engine;
import cn.hutool.core.lang.Singleton;
import cn.hutool.core.util.ServiceLoaderUtil;
import cn.hutool.core.text.StrUtil;
import cn.hutool.log.StaticLog;
import org.dromara.hutool.core.lang.Singleton;
import org.dromara.hutool.core.util.ServiceLoaderUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.log.StaticLog;
import cn.hutool.extra.pinyin.PinyinEngine;
import cn.hutool.extra.pinyin.PinyinException;
import org.dromara.hutool.extra.pinyin.PinyinEngine;
import org.dromara.hutool.extra.pinyin.PinyinException;
/**
* 简单拼音引擎工厂用于根据用户引入的拼音库jar自动创建对应的拼音引擎对象

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.pinyin.engine.bopomofo4j;
package org.dromara.hutool.extra.pinyin.engine.bopomofo4j;
import cn.hutool.core.text.StrUtil;
import cn.hutool.extra.pinyin.PinyinEngine;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.extra.pinyin.PinyinEngine;
import com.rnkrsoft.bopomofo4j.Bopomofo4j;
import com.rnkrsoft.bopomofo4j.ToneType;

View File

@@ -29,4 +29,4 @@
*
* @author looly
*/
package cn.hutool.extra.pinyin.engine.bopomofo4j;
package org.dromara.hutool.extra.pinyin.engine.bopomofo4j;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.pinyin.engine.houbbpinyin;
package org.dromara.hutool.extra.pinyin.engine.houbbpinyin;
import cn.hutool.extra.pinyin.PinyinEngine;
import org.dromara.hutool.extra.pinyin.PinyinEngine;
import com.github.houbb.pinyin.constant.enums.PinyinStyleEnum;
import com.github.houbb.pinyin.util.PinyinHelper;

View File

@@ -29,4 +29,4 @@
*
* @author looly
*/
package cn.hutool.extra.pinyin.engine.houbbpinyin;
package org.dromara.hutool.extra.pinyin.engine.houbbpinyin;

View File

@@ -10,10 +10,10 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.pinyin.engine.jpinyin;
package org.dromara.hutool.extra.pinyin.engine.jpinyin;
import cn.hutool.core.array.ArrayUtil;
import cn.hutool.extra.pinyin.PinyinEngine;
import org.dromara.hutool.core.array.ArrayUtil;
import org.dromara.hutool.extra.pinyin.PinyinEngine;
import com.github.stuxuhai.jpinyin.PinyinException;
import com.github.stuxuhai.jpinyin.PinyinFormat;
import com.github.stuxuhai.jpinyin.PinyinHelper;
@@ -70,7 +70,7 @@ public class JPinyinEngine implements PinyinEngine {
try {
return PinyinHelper.convertToPinyinString(str, separator, format);
} catch (final PinyinException e) {
throw new cn.hutool.extra.pinyin.PinyinException(e);
throw new org.dromara.hutool.extra.pinyin.PinyinException(e);
}
}
}

View File

@@ -29,4 +29,4 @@
*
* @author looly
*/
package cn.hutool.extra.pinyin.engine.jpinyin;
package org.dromara.hutool.extra.pinyin.engine.jpinyin;

View File

@@ -16,4 +16,4 @@
* @author looly
*
*/
package cn.hutool.extra.pinyin.engine;
package org.dromara.hutool.extra.pinyin.engine;

View File

@@ -10,11 +10,11 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.pinyin.engine.pinyin4j;
package org.dromara.hutool.extra.pinyin.engine.pinyin4j;
import cn.hutool.core.array.ArrayUtil;
import cn.hutool.extra.pinyin.PinyinEngine;
import cn.hutool.extra.pinyin.PinyinException;
import org.dromara.hutool.core.array.ArrayUtil;
import org.dromara.hutool.extra.pinyin.PinyinEngine;
import org.dromara.hutool.extra.pinyin.PinyinException;
import net.sourceforge.pinyin4j.PinyinHelper;
import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;

View File

@@ -29,4 +29,4 @@
*
* @author looly
*/
package cn.hutool.extra.pinyin.engine.pinyin4j;
package org.dromara.hutool.extra.pinyin.engine.pinyin4j;

View File

@@ -10,9 +10,9 @@
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.extra.pinyin.engine.tinypinyin;
package org.dromara.hutool.extra.pinyin.engine.tinypinyin;
import cn.hutool.extra.pinyin.PinyinEngine;
import org.dromara.hutool.extra.pinyin.PinyinEngine;
import com.github.promeg.pinyinhelper.Pinyin;
/**

View File

@@ -31,4 +31,4 @@
*
* @author looly
*/
package cn.hutool.extra.pinyin.engine.tinypinyin;
package org.dromara.hutool.extra.pinyin.engine.tinypinyin;

Some files were not shown because too many files have changed in this diff Show More