快速将String数组转换成Integer数组

首先需要在在pom.xml文件添加依赖:
commons-beanutils commons-beanutils 1.8.3

String[] stringArray = request.getParameter("aftIdList").split(",");
//将String数组转成Integer数组
Integer[] interArray = (Integer[])ConvertUtils.convert(aftIdStringArray, Integer.class);
    原文作者:weixin_42590334
    原文地址: https://blog.csdn.net/weixin_42590334/article/details/102892336
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞