将 ArrayList 或数组转换为字符串数组
我正在开发一个项目,需要将 ArrayList 或 Array 转换为字符串数组。 我需要将每个单词/字符串转换为单独的字符串。
像这样的东西:
public ArrayList<String> arrList2 = new ArrayList<String>();
然后将其转换并过去
public String arrList4 [] = new String [250];
希望这足够详细,以便您得到我想要的。
I'm working on a project where i need to convert either an ArrayList or and Array to an String array.
I need each word/string to convert to seperate strings.
Something like this:
public ArrayList<String> arrList2 = new ArrayList<String>();
and then convert it and past into
public String arrList4 [] = new String [250];
Hope this is detaild enough so you get what i want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个有趣的链接: http://www.google.be/search?gcx=w&sourceid=chrome&ie=UTF-8&q=ArrayList+to+array
Here is an interesting link: http://www.google.be/search?gcx=w&sourceid=chrome&ie=UTF-8&q=ArrayList+to+array
字符串[]strArray = 新字符串[250];
arrList2.toArray(strArray);
String []strArray = new String[250];
arrList2.toArray(strArray);