Java Compilation Output in Eclipse

I want to send someone a file with warnings and compilation errors from a Java project that I have in Eclipse, but I don’t know how to do this.

I know that Eclipse uses its own Java compiler. Is there a way to export the information on the Problems tab to a file?

+3
source share
1 answer

Right-click> Select All> Copy and Paste.

When pasting you will get a line of text similar to this ...

Description Resource    Path    Location    Type
The import android.app.Activity is never used   GetPhotos.java  /PhotoUp/src/com/photoup    line 10 Java Problem
The import android.os.Bundle is never used  GetPhotos.java  /PhotoUp/src/com/photoup    line 15 Java Problem
+2
source

All Articles