修改注释与方法参数对应
This commit is contained in:
@ -290,7 +290,7 @@ public class Convert
|
||||
/**
|
||||
* 转换为Integer数组<br>
|
||||
*
|
||||
* @param split 被转换的值
|
||||
* @param str 被转换的值
|
||||
* @return 结果
|
||||
*/
|
||||
public static Integer[] toIntArray(String str)
|
||||
@ -301,7 +301,7 @@ public class Convert
|
||||
/**
|
||||
* 转换为Long数组<br>
|
||||
*
|
||||
* @param split 被转换的值
|
||||
* @param str 被转换的值
|
||||
* @return 结果
|
||||
*/
|
||||
public static Long[] toLongArray(String str)
|
||||
@ -335,8 +335,8 @@ public class Convert
|
||||
/**
|
||||
* 转换为Long数组<br>
|
||||
*
|
||||
* @param isIgnoreConvertError 是否忽略转换错误,忽略则给值null
|
||||
* @param values 被转换的值
|
||||
* @param split 分隔符
|
||||
* @param str 被转换的值
|
||||
* @return 结果
|
||||
*/
|
||||
public static Long[] toLongArray(String split, String str)
|
||||
@ -358,7 +358,7 @@ public class Convert
|
||||
/**
|
||||
* 转换为String数组<br>
|
||||
*
|
||||
* @param split 被转换的值
|
||||
* @param str 被转换的值
|
||||
* @return 结果
|
||||
*/
|
||||
public static String[] toStrArray(String str)
|
||||
|
@ -10,10 +10,10 @@ import java.math.BigDecimal;
|
||||
public class Arith
|
||||
{
|
||||
|
||||
// 默认除法运算精度
|
||||
/** 默认除法运算精度 */
|
||||
private static final int DEF_DIV_SCALE = 10;
|
||||
|
||||
// 这个类不能实例化
|
||||
/** 这个类不能实例化 */
|
||||
private Arith()
|
||||
{
|
||||
}
|
||||
|
@ -85,7 +85,7 @@ public class IpUtils
|
||||
/**
|
||||
* 将IPv4地址转换成字节
|
||||
*
|
||||
* @param IPv4地址
|
||||
* @param text IPv4地址
|
||||
* @return byte 字节
|
||||
*/
|
||||
public static byte[] textToNumericFormatV4(String text)
|
||||
|
@ -16,7 +16,8 @@ public class FileUtils
|
||||
/**
|
||||
* 输出指定文件的byte数组
|
||||
*
|
||||
* @param filename 文件
|
||||
* @param filePath 文件路径
|
||||
* @param os 输出流
|
||||
* @return
|
||||
*/
|
||||
public static void writeBytes(String filePath, OutputStream os) throws IOException
|
||||
|
Reference in New Issue
Block a user