Hi, Yes, use the Blob type that you can store in the datastore see http://code.google.com/appengine/docs/java/datastore/entities.html#Properties_and_Value_Types
Limitation: a Blob is < 1 Mbytes. If your file is bigger, you will need to split it in more than 1 blob and link them together via an array, a collection or some kind of parent-child relationship with another entity. regards didier On Jan 13, 9:27 am, mahesh lalwani <[email protected]> wrote: > Hi, > I have data in XML documents and I want to store it on Google App > Engine using java. So can u please suggest me the best way to do it. > > Regards, > Mahesh -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
