0
votes
2answers
24 views

Object XML mapping in Android

I am developing client server Model based application in which client is in Android and server in php . I want to transfer product information for example(Name,Price,Description) from client to ...
-4
votes
2answers
38 views

How to convert a custom object into String in Android?

I have an Object of a custom class. I need to convert it into a String so that I can write it to a file. Is there a way out for this ? thanks for help.
0
votes
1answer
34 views

Where does SerializeObject.WriteSettings write the file? (path)

I have trouble finding the file on my phone. I want to have a desktop application that can read the file I'm saving with my phone (accelerometer data), and because I'm very new to android development ...
-8
votes
1answer
41 views

NotSerializableException: com.google.android.gms.maps.model.LatLng [duplicate]

I am writing a Trip object on file, out.writeObject(pTrip); and getting NotSerializableException, when i searched this problem its about we can not write non-serializable data on file. below is the ...
0
votes
2answers
54 views

XML Serialization with Simple Framework

I am using a framework called Simple, which is very helpful for serializing and deser. xml content. However I am not able to serialize a xml file to an object. The output object should be filled with ...
0
votes
1answer
41 views

In andorid Difference Between parcelable and Serialization? [duplicate]

can anyone please explain me what it means by the performance issue the serialization encounters and make the Parcelable an efficient way rather than serialization in android to pass an object from ...
1
vote
1answer
97 views

StackOverflowError while saving and loading my object in android

I'm writing an android program and i just ran into a problem. My program serves to create graphs, run some specific algorithms on them (Dijsktra, BelmanFord, etc.), save the graphs to SD Card and ...
0
votes
3answers
42 views

Send not serializable data to new Activity

I have not serializable data which I must sent to other Activity. I try to use Intent, but it's impossible. Intent intent = new Intent(v.getContext(), UserDetailActivity.class); ...
0
votes
1answer
54 views

Serialization / Deserialization & Proguard

With one of my app, I had a problem with one of my Serialized classes when I try to update my APK. Indeed, there were problems related to objects saved with the previous version of the apk and the ...
-1
votes
2answers
35 views

Unable to save a hashmap object into a file in andoid

I'am downloading lot of images from internet and storing into a hashmap and showing in a listview. I want to cache the images. For that, Iam storing the hashmap object into a file inside onDestroy() ...
0
votes
1answer
64 views

Serialization DataTable (WCF) to Android project

I connected Android java with WCF Service. Now I am trying to get data from WCF Service into my project. I have problem with DataTable type from C# which I have to parse into my Class called Groups ...
0
votes
1answer
40 views

Java readObject previews data, but will not read or transfer it [duplicate]

I can't seem to find a way to make readObject() transfer it's contents to an object variable. When I step through the Load function I get to "temp = (HashMap) ois.readObject();" Before this line is ...
0
votes
1answer
29 views

xml or serialize

I have got a limited list of objects which I am serializing to storage using ObjectInputStream and ObjectOutputStream. I have come across suggestions not to use Serialize. Instead of serializing the ...
1
vote
1answer
31 views

Xstream Ambigious xml tags

I'm working on a Android project, which is using an API to get it's data. Now first of all, I can't change anything to the API because it's also used in an iPhone app which has allready been launced. ...
1
vote
0answers
44 views

Caused by : java.io.NotserializableException : android.app.Instrumentation

I have written a service which implements Serializable, and I have made all customized classes to be serializable. But there are errors when running the project: * Parcelable encountered IOException ...
0
votes
2answers
116 views

ClassCastException when retrieving data from bundle on Android

I have some state that I want to save accross the lifecycle of a fragment. It works fine when the screen rotates for example, but when the process has been killed and restored from disk (I think ...
0
votes
0answers
15 views

serializing and deserializing key pair object produces different values

I am trying to serialize a KeyPair object(from class java.security.KeyPair) , but when I am deserializing that back to keypair object, I am not getting the original value. I am attaching my code ...
1
vote
1answer
34 views

OptionalDataException when trying to receive object over socket [closed]

I want to pass Object from server to client over socket. The client side is on Android. I have this serializable class: public class BoardImage implements Serializable{ private static final ...
4
votes
4answers
87 views

Implementation of saving settings

I am writing kind of game on android. And i wonder how to save settings in order not to have problems with updates. For example I save settings with serialization, I have class GameChar public class ...
0
votes
2answers
45 views

EnumSet parcelable

I'm writting the writeToParcel method and my model has an EnumSet<object> as attribut. I don't know which out.write....() i have to use for this type ?
0
votes
0answers
43 views

java android send Serializable data object to USB

I have a serializable data object that I want to send as packets thru USB. It will have to be sent in 64 byte packets. In C I would set a pointer to my object and send byte by byte for the sizeof ...
0
votes
0answers
120 views

GetFieldID: unable to find field Ljava/util/HashMap;.loadFactor:F

My Android app serializes objects (with ObjectOutputStream). Each time I deserialice one (with ObjectInputStream), I get lots of debug messages like this: 01-20 06:44:22.274: D/dalvikvm(2204): ...
2
votes
2answers
109 views

Android Calendar Serialization Incompatable with Java 6

I am attempting to use an object serialization socket connection between a Java server and an Android client . I have run into problems when trying to send a Calendar object over this connection. ...
0
votes
0answers
40 views

Messagepack android crash

I did not found any information about msgpack-java in android except this discussion Using MessagePack with Android , from which I considered that msgpack-java-0.6.7 supports android. So I made ...
1
vote
1answer
61 views

Android/C++ data serialization

What is the best way or library to exchange data/serialize structures between c++ server and android client? Performance is essential. Compression is preffered. Right now I am trying to implement ...
3
votes
4answers
281 views

Custom serializer - deserializer using GSON for a list of BasicNameValuePairs

I'm trying to implement a custom gson serializer/deserialiser for some list of BasicNameValuePair objects. I saw the partial solution code (for serialization) here: How do I get Gson to serialize a ...
0
votes
1answer
45 views

Android serialization - will this work with a whole instance of an object?

The response I got to my previous question : sending data structure through byte[]? android states that I should look into serialization for converting my data to a byte array for transfer via ...
0
votes
2answers
112 views

ClassNotFoundException while passing a Serializable

I am an Android developer and I am trying to send a Serializable object to another Activity using a Bundle. However, I get the following - Parcelable encountered ClassNotFoundException reading a ...
0
votes
1answer
42 views

InvalidClassException and IllegalAccessException while deserializing

I serialized a class which extends LinearLayout as shown in below code snippet. While deserializing, I am getting above mentioned exceptions. As in this link, serializing ImageView is not possible(for ...
0
votes
2answers
84 views

Deserialize an XML in C# generated by XStream from java

My application has 2 parts, an android client and a windows print server coded in c#. I used Xstream in java to convert my object to XML (in android). here's a part of it: <ROOT> ...
0
votes
1answer
148 views

Save parcelable class into file

I was using a serializable class for I save the xml parser result, but when I read that It is very slow in Android, I changed to parcelable class. Now, I want to save the content parcelable class ...
0
votes
3answers
202 views

Store an ArrayList of custom objects

I have an array of custom objects called AccActivity. public class AccActivity { AccData Data; AccData fData; AccData lpfData; int[] crossings; float[] sd; int type = -1; ...
0
votes
2answers
98 views

Sending serialized data from android to java

I want to send class variables from android device to server. In my server java program receives requests with socket connection I want to use xml serializer . I couldn't find any xml serializer ...
0
votes
1answer
75 views

How can I fix the error saying DeferFlushOpWorker: Timed out waiting for ops to flush? Android

Running my android application, I get the error mentioned above and then the phone I'm debugging on becomes unresponsive until I force restart it. The code that's causing the error to occur is in ...
2
votes
1answer
139 views

Scala - mutable HashMap -> write to file / read from file -> HashMap null

I have this Scala code running on an Android device: // create Map val myMap1 = new HashMap[Int, String]() myMap1.put(1, "a") // write it to file val outStream = context.openFileOutput("test.txt", ...
0
votes
1answer
61 views

Why is this NotSerializable?

I get a NotSerializableException with the following code and I don't know why: private class Entry implements Serializable { public int mProgress, mReps; public int mDays; public String[] ...
0
votes
1answer
97 views

StreamCorruptedException being caught?

I am having trouble storing an object onto the device storage. At first I was getting a NotSerializableException so I made the object Serializable and now in the try {} catch {} block it is throwing a ...
1
vote
1answer
108 views

convert java bytes to c# bytes (serializing issue )

in the following I tried to make some sort of magi-ration between Java serialize text file stored in amazon to c# deserialize object. my idea is to convert signed bytes in Java to Unsigned bytes in ...
1
vote
0answers
82 views

Must I include dependent libraries in boost?

I'm entering month 3 of trying to build an Android project that uses boost for serialization. So, I am compiling Boost 1.49 with Serialization, along with about 8 other libraries such as date_time, ...
0
votes
0answers
129 views

deserialize object(s) using binary formatter in c#

I have serialized text file from (Java/android). I need to deserialize this text file using c# binary formatter . but I face an error tell me that the input stream is not in binary format. kindly note ...
0
votes
1answer
28 views

XML Serialization with long xmls

I'm working on a game of test and different questions. The user can select a topic from a menu and in each menu there are 20-30 questions. What I want to do is to serialize my code into XML in order ...
0
votes
2answers
152 views

Saving object to file on internal storage (Android)

I tried this: public class People implements Serializable { String name; public People(String name) { this.name = name; } public String getName() { return name; } public void ...
0
votes
0answers
47 views

Serialization with Simple XML

Hi all, I'm trying to create an XML file based in some code with the help of Simple XML framework but I have some doubts. The file I want to create has this format: <?xml version="1.0"?> ...
3
votes
1answer
94 views

Strange exception during deserialization

I need to deserialize object but when I'm reading object using readObject i get such exception: Exception raised: java.lang.Enum; Incompatible class (SUID): java.lang.Enum: static final long ...
0
votes
0answers
106 views

How to Serialize and Deserialize android.graphics.Path object

I need to serialize and deserialize android.graphic.Path object. The below code (I am using) serializes and deserializes an Object public static byte[] serialize(Object obj) { ...
0
votes
2answers
80 views

Writing my own Android Serialization class

I am writing my own android serialization class to convert an object to xml. I have created a Bar class that consists of the colour,Rect and Division of a bar. public class Bar { String colour; ...
3
votes
1answer
76 views

Performance of SimpleXml @ElementListUnion tag over Android

I'm using simpleXml with Android to serialize/deserialize list of objects. Before, I had 30 different objects every one with a class associated that contains the list. To write less duplicate code ...
0
votes
1answer
116 views

ORMLite dataType=DataType.SERIALIZABLE doesn't work

I have declared my type to be SERIALIZABLE as specified by ORMLite documentation, but I still get: ORMLite can't store unknown class interface java.io.Serializable for field 'task_titles'. ...
7
votes
1answer
2k views

“Unparseable date: 1302828677828” trying to deserialize with Gson a millisecond-format date received from server

After 4 hours non-stop trying to resolve the problem I have decided to ask here if someone could help me. The problem is that my Android client when tries to deserialize the data received from a ...
6
votes
2answers
10k views

Using GSON in Android to parse a complex JSON object

I'm relatively new to Java programming and need to parse a complex JSON object across the wire. I've been reading documentation on GSON the past day and Haven't had much luck being able to fully ...

1 2 3 4 5 8