Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
したがって、これは可能であることを知っているため、非常に単純なはずです(「セット」があまりわかりません)。
基本的にこの TreeMap があります。これを aTree と呼びましょう。だから私は次のようなことをする必要があります:
somethingHereProbably = aTree.keySet(); somethingHereProbably.toStringArray();
できるよ
Map<String, Object> map = ... String[] strings = map.keySet().toArray(new String[map.size()]);
これは、TreeMap を含むあらゆる種類のマップで機能します。