-3

I wonder how to export data from real device to CSV ?

I using real device to run my app, and now I want to export all the data to CSV. Is it possible?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
John
  • 684
  • 11
  • 35

1 Answers1

1

Yes you can, keep on writing the data to a CSV file on the SD Card, and either export it through email or any others means.

You can see the example here on how to convert data into CSV and saving it to a file.

Eric B.
  • 4,622
  • 2
  • 18
  • 33
  • Can you provide some link to me ? I don't understand what do you meant by _writing the data to a CSV file on the SD Card_ – John Dec 14 '15 at 09:21
  • 1
    There are plenty on the internet, google for examples on how to create CSVs using Java. – Eric B. Dec 14 '15 at 09:33