TreeMap 键值到字符串数组

发布于 2024-12-25 05:15:35 字数 348 浏览 2 评论 0原文

我正在尝试将 Treemap 中的键值添加到 String[],但我做错了一些事情,并且得到以下信息:“[Ljava.lang.String;@281ec58a”。有人可以帮忙吗? 提前致谢。

这是我正在使用的代码:

    TreeMap t = new TreeMap(hm); //hm is a Hashmap
    t = (TreeMap) sortByValues(t); // i sort the values with this method
    String [] tempa = (String[]) t.keySet().toArray(new String[t.size()]);

I am trying to add the key values from a Treemap to a String[], but i am doing something wrong and i get this: "[Ljava.lang.String;@281ec58a". Can anyone help?
Thanks in advance.

This is the code i'm using:

    TreeMap t = new TreeMap(hm); //hm is a Hashmap
    t = (TreeMap) sortByValues(t); // i sort the values with this method
    String [] tempa = (String[]) t.keySet().toArray(new String[t.size()]);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

呆橘 2025-01-01 05:15:35

“[Ljava.lang.String;@281ec58a”” 就是默认情况下打印数组(即转换为字符串)的方式。如果您迭代数组的内容,并依次打印每个元素,您可能会发现一切都符合预期。

"[Ljava.lang.String;@281ec58a" is simply how arrays are printed (i.e. converted to a string) by default. If you iterate over the contents of the array, and print each element in turn, you'll likely find that everything is as expected.

呢古 2025-01-01 05:15:35

完全不清楚 HashMapTreeMap 中的值是什么,因为您使用的是原始类型。如果您使用泛型,您的代码对我们、您和编译器来说都会更清晰。

然而,很可能一切都很好 - 只是您通过调用 toString 将字符串数组转换为字符串。 (您还没有告诉我们“我明白了”是什么意思 - 在哪里?)

尝试使用:

String output = Arrays.toString(tempa);

来查看数组中的值是什么。

It's entirely unclear what the values within the HashMap and TreeMap are, because you're using the raw types. Your code would be clearer to us, you and the compiler if you used generics.

However, it could well be that everything is fine - it's just that you're converting the string array to a string somewhere by calling toString on it. (You haven't told us what you mean by "i get this" - where?)

Try using:

String output = Arrays.toString(tempa);

to see what the values within the array are.

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