vote up 3 vote down star
1

Like firebug for debugging javascript,

is there such a feature in eclipse? or do I need a plugin?

flag

40% accept rate

5 Answers

vote up 1 vote down

I believe that what you're looking for are "watch expressions". Just mark the piece of code in the source code view, right-click and select "Watch".

link|flag
1  
You can also use the "Display" view to execute any code while you're debugging. – hfernandes Jun 4 at 12:22
I saw that,but there is no response after I typed "System.out.println('test');" into it. – Shore Jun 4 at 12:32
How to make it echo some result just under the Display view? – Shore Jun 4 at 12:36
"watch expressions" works! – Shore Jun 4 at 12:45
If you highlight the expression in the Display view (which also allows content assist, btw), you can right-click and choose "inspect" (runs the expression and brings up an inspector tree on the result), "execute" (runs the expression), and "display" (runs the expression and prints the result) – Scott Stanchfield Jun 4 at 13:20
show 1 more comment
vote up 0 vote down

You can use the Display view to execute commands while debugging. You can find this in Window -> Show View -> Display

link|flag
I run this,but no response in Display tab: System.out.println(path.length); – Shore Jun 4 at 12:31
Seems need to switch to Console view to see the result,that's un-convenient! – Shore Jun 4 at 12:35
vote up 0 vote down

you can use the 'Display' view to evaluate expressions in eclipse.

Look under the debug list of views. It is a standard par part of the java tooling so you don't need a plugin

link|flag
But there is nothing echo back,after I type something like "path.length",where path is a String[] – Shore Jun 4 at 12:41
as far as I remember (not using eclipse at the moment) you click on the run button and the result of the last expression is displayed. – gid Jun 4 at 12:44
But there is no "run" button under Display view.. – Shore Jun 4 at 12:46
Oh,I need to select a row to enable the "run" button..Was that so ? – Shore Jun 4 at 12:47
I think @banjollity actually has a copy of eclipse open :-) I'm just flandering around in my memory...is now a good time to recommend Intellij – gid Jun 5 at 8:25
vote up 4 vote down

Use the Display view, or a bit quicker: highlight the code you want to run and right-click/Execute or Ctrl+U.

link|flag
Alternatively to "Execute", use Display (Ctrl+Shift+D) or Inspect (Ctrl+Shift+I) to see the result. – zvikico Jun 4 at 15:01
vote up 0 vote down

You can also create a scrapbook page (a .jpage) file and type your code in there. Then click run. It looked slightly more convenient when I tried it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.