简体   繁体   中英

How to copy watch expression value in eclipse?

How to copy watch expression value in eclipse? Whenever I use "Copy Expression" from drop down menu it gets me something like this '"System.currentTimeMillis()" (pending)'. Is the pending part should have been the value of system time?

Could not find a way to do this directly - but here's a workaround: Use

System.out.println(YourExpression.foo())

Then you can copy the output from the Console.

This worked for me:

Select the expression, right click and disable.
Then copy/paste as normal
Then right click and enable

Should get something like this (and you can just delete the disabled tag):

"System.currentTimeMillis()" value (disabled)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM