Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Observe very long String content in Eclipse

Since LogCat truncates long strings, I work around this using FileOutputStream to inspect the contents of very long strings.

It works but it forces me to 'adb pull' that file, which is not very convenient, compare to watching it on LogCat.

Is there any other way in Eclipse to watch very long strings?

like image 692
an00b Avatar asked Feb 03 '23 20:02

an00b


2 Answers

For the record, the answer was found here.

like image 85
an00b Avatar answered Feb 05 '23 09:02

an00b


when you stop in debug on the variable do the following and past it to a text file var content copy

like image 28
shimiDroid Avatar answered Feb 05 '23 10:02

shimiDroid