|
|
@@ -313,7 +313,7 @@ public class Convert
|
|
313
|
313
|
* 转换为Integer数组<br>
|
|
314
|
314
|
*
|
|
315
|
315
|
* @param split 分隔符
|
|
316
|
|
- * @param split 被转换的值
|
|
|
316
|
+ * @param str 被转换的值
|
|
317
|
317
|
* @return 结果
|
|
318
|
318
|
*/
|
|
319
|
319
|
public static Integer[] toIntArray(String split, String str)
|
|
|
@@ -370,7 +370,7 @@ public class Convert
|
|
370
|
370
|
* 转换为String数组<br>
|
|
371
|
371
|
*
|
|
372
|
372
|
* @param split 分隔符
|
|
373
|
|
- * @param split 被转换的值
|
|
|
373
|
+ * @param str 被转换的值
|
|
374
|
374
|
* @return 结果
|
|
375
|
375
|
*/
|
|
376
|
376
|
public static String[] toStrArray(String split, String str)
|
|
|
@@ -962,9 +962,7 @@ public class Convert
|
|
962
|
962
|
c[i] = (char) (c[i] - 65248);
|
|
963
|
963
|
}
|
|
964
|
964
|
}
|
|
965
|
|
- String returnString = new String(c);
|
|
966
|
|
-
|
|
967
|
|
- return returnString;
|
|
|
965
|
+ return new String(c);
|
|
968
|
966
|
}
|
|
969
|
967
|
|
|
970
|
968
|
/**
|