欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

将String数组转化成Integer数组

程序员文章站 2022-03-31 09:35:08
...

customerId类型为String[] ,转化后customerIds 为Integer[]

  Integer[] customerIds = (Integer[]) ConvertUtils.convert(customerId, Integer.class);
相关标签: java笔记