Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build an Interactive Story App The Model-View-Presenter Pattern Why Do We Use MVP?

Arcee Palabrica
Arcee Palabrica
8,100 Points

Data format clarification: Does it means Java Language only?

Ben Jakuben mentioned that we can get the data even from a server as long as it's in the same format as how we store it on the phone. When we say "format" does it mean data created using Java language only? Like if I have a website built in Python that gathers data does that mean I cannot download those data for the app?

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi Arcee,

No, the format here is the format the stored data, not the language the app is written in. So, as long as you have JSON formatted data on the device and are retrieving data in JSON format, then it will work. But, CSV formatted data on the phone and JSON from the server will not work.

Hope that helps. :) :dizzy:

Arcee Palabrica
Arcee Palabrica
8,100 Points

Hi Jason,

Thanks for that quick reply... so that means regardless of the language the database/website was created on which the data is stored as long as the format is the same you can make use of them(the data)? :)