java中如何将ArrayList中的元素复制到int数组
可能的重复:
在java中将字符串数组列表转换为字符串数组?
以下是我的代码
ArrayList<String> IdList = new ArrayList<String>();
,我想从中复制项目 IDList
到 int IdArray[]
。
Possible Duplicate:
convert String arraylist to string array in java?
Following is my code
ArrayList<String> IdList = new ArrayList<String>();
and I want to copy items fromIDList
to int IdArray[]
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(6)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
试试这个东西,
Try this stuff,