user674353
user674353

Reputation:

Export eclipse console view output to text file

How to redirect console view output to a text file in Eclipse?

Upvotes: 47

Views: 53418

Answers (2)

henriqueor
henriqueor

Reputation: 939

Go to Run --> Run Configurations..

In the dialog, select your Java project, then select the Common tab.

First, you have to select the Output File Checkbox. Then set the path and filename where Eclipse is going to redirect the console output.

Second, select Append Checkbox.

enter image description here

Upvotes: 15

Prince John Wesley
Prince John Wesley

Reputation: 63708

Run -> Run Configurations... -> Java Application -> Your Application -> Common tab -> File

Check Append for append mode.

Upvotes: 43

Related Questions