Dumping a huge array in Intellij-Idea debugger

前端 未结 2 614
暗喜
暗喜 2021-02-05 12:52

Is there a way in Idea to dump the content of a large - very - array of ints into the clipboard ?

\'copy value\' on an array return nothing.

2条回答
  •  花落未央
    2021-02-05 13:14

    1. Right click variable
    2. Evaluate expression
    3. Type *nameOfYourArray*.toString()
    4. Click evaluate
    5. Ctrl-C to get content

提交回复
热议问题