将 ArrayList 或数组转换为字符串数组

发布于 2024-12-06 12:03:15 字数 303 浏览 0 评论 0原文

我正在开发一个项目,需要将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我乃一代侩神 2024-12-13 12:03:16
ArrayList<String> al = new ArrayList<String>();

    al.add("C");
    al.add("java2s.com");
    al.add("D");
    al.add("F");
    al.add(1, "java2s.com");

    String[] strings = al.toArray(new String[al.size()]);
    System.out.println(Arrays.toString(strings));

这是一个有趣的链接: http://www.google.be/search?gcx=w&sourceid=chrome&ie=UTF-8&q=ArrayList+to+array

ArrayList<String> al = new ArrayList<String>();

    al.add("C");
    al.add("java2s.com");
    al.add("D");
    al.add("F");
    al.add(1, "java2s.com");

    String[] strings = al.toArray(new String[al.size()]);
    System.out.println(Arrays.toString(strings));

Here is an interesting link: http://www.google.be/search?gcx=w&sourceid=chrome&ie=UTF-8&q=ArrayList+to+array

天气好吗我好吗 2024-12-13 12:03:16

字符串[]strArray = 新字符串[250];
arrList2.toArray(strArray);

String []strArray = new String[250];
arrList2.toArray(strArray);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文