i am developing an application on Google app Engine i am saving HTML text in datastore using com.google.appengine.api.datastore.Text. All transaction working fine except for partial string which is stored in datastore. i don't the exact problem.
+1
A:
The "java.lang.String" that you would typically use is limited to 500 characters.
You need to import and use
import com.google.appengine.api.datastore.Text;
....
class HtmlItem {
@Persistent
private Text html;
}
Derrick
2010-07-29 12:20:01
yeah i8ts is certainly working but all the characters are not saved in data-store i have already tried this.
Altaf Rahman
2010-08-02 06:49:34
It would be very helpful if you posted more code.
Derrick
2010-08-02 11:36:53