Serialization is the process of converting a data structure or object state into a format that can be stored. The `SerializableAttribute` is a .NET Framework attribute that signifies the object is serializable. The `Serializable` Java marker interface indicates that an object can be serialized using ...
-1
votes
2answers
22 views
Weird serialization error when entity is serializable
I get the following error when trying to serialize an object:
Type
'TEST.Common.TestObj`1+<>c__DisplayClass1`1[[TEST.Common.TestEntity,
TEST.Common, Version=1.0.0.0, Culture=neutral,
...
2
votes
2answers
40 views
Saving information using Serializable
I am attempting to get my program to save the data inputted by a user. Currently, I am getting a:
java.io.NotSerializableException: java.awt.image.BufferedImage error
Now, what I have done is ...
0
votes
3answers
32 views
passing self writting Object via putExtra()
I am trying to pass over a selfwritten Object "Data" of Data.class to a newly created Activity "SettingsScreen" with the main Activity "Mainscreen"
Data:
public class Data implements Serializable
{
...
-1
votes
0answers
47 views
Write and read non-serializable object to file android example [closed]
I couldn't find good example here, so after some fighting with writing non-serializable object to file in Android, I decided to show you my solution. Maybe it will be helpfull for someone, and maybe ...
0
votes
0answers
23 views
Android how to write and read from file non-serializable objects array?
I had to create a separate topic to ask simpler question.
Could you please check if my solution is effective?
I was trying to find a solution for last 3 days, and I am not happy with current solution.
...
2
votes
1answer
89 views
Why does ArrayList implement Serializable?
I tried to serialize an ArrayList with JAXB and failed. Is this because elementData is marked as transient?
Why does the ArrayList implement the Serializable Inferface and has it's data transient?
I ...
1
vote
2answers
47 views
Parceable encountered IOException writing serializable object
I am getting this error :
FATAL EXCEPTION: main
java.lang.RuntimeException: Parcelable encountered IOException writing serializable object (name = game.Level)
at ...
0
votes
2answers
27 views
Entity hibernate implement serialized
I used to read a coding best practice is the entity of hibernate should not implement
java.io.Serializable
.
My idea is just for better performance, to avoid compiler processing something for ...
1
vote
0answers
22 views
Java “Could Not Serialize the Data”
I'm trying to get my clipboard to receive some custom data in a drag and drop. The custom data is another java type. This other type does implement serializable, so I'm really not sure why this ...
0
votes
0answers
24 views
ProGuard usage on an application that uses Object Serialization
I have an application that uses a SaveData class, which uses ObjectOutputStream to save serialized data, and a LoadData class, which uses an ObjectInputStream to load the data. I have tried looking ...
0
votes
1answer
50 views
Porting java application to android - is it possible to make Serializable work?
I'm attempting to port a java application to android. The application uses Serializable to store data. There's an array list of users, and each user has various other elements(all of which also ...
1
vote
2answers
55 views
How to persist Http Session
I have web application with Spring MVC and Webflow. I'm implementing "snapshot" mechanism: Developers by special parameter in the URL can save their current state (page, components states etc.), and ...
0
votes
1answer
30 views
Parcelable Confusion
I am newB in Android. I was working on a problem where I came across passing custom object between Activity. I did some research and found that, if I need to either implement Serializable or ...
1
vote
2answers
83 views
GWT object serialization
I'm trying to return an arrayList from my mysql database to use in a GWT cellList, but I'm running into a serialization issue.
Type 'com.cbs.ioma.client.Order' was not included in the set of
...
1
vote
1answer
52 views
How to stop ProGuard from stripping the Serializable interface from a class
Is there an explicit way to stop ProGuard from changing a class from implementing an interface?
I have a class that implements java.io.Serializable, let's call it com.my.package.name.Foo. I've found ...
0
votes
1answer
54 views
Spring integration message handler : ActiveMQTextMessage
I'm facing a problem using a jdbc-store in a spring-int aggregator component.
My flow is like this :
ActiveMQ -> aggregator -> jdbc-message-store -> ftp
But on handling the messages, i'm facing a ...
1
vote
1answer
32 views
Store WP state on phone
I want to store the state of the app on the phone to recreate it when the app starts again.
The problem is that I need to store things like IDictionary<string, object> that includes all kind of ...
0
votes
0answers
48 views
Get XmlString into Serializable object c# - error in xml document (1 40)
I am able to read through the share point web service and receive a XMLString in the below format:
<?xml version="1.0" ?>
- <ArrayOfMyLinksFeedSummary ...
0
votes
4answers
45 views
Serializable simple Object IOException
Found the solution:
you have to open the Streams like this:
FileInputStream inputStream = openFileInput(FILENAME);
ObjectInputStream ois = new ObjectInputStream(inputStream);
Same with Output. ...
3
votes
1answer
111 views
StreamCorruptedException when sending Serialized objects via Bluetooth
I have a Serialized class that I need to send as an object via Bluetooth, and also implements Runnable. As such, I set a few variables first, then send it as an object to be executed by another ...
0
votes
1answer
143 views
retrieve data from soap object via kvm serializable and store in array
I have a web service in php which retrieves data from a database and i consume this web service in my android application. the problem is that i need the data retrieved in another android activity, i ...
0
votes
1answer
24 views
Is there any way to disable ORMLite's check that a field declared with DataType.SERIALIZABLE implements Serializable?
Question title just about says it all. I have a field declared like this:
@DatabaseField(canBeNull=false,dataType=DataType.SERIALIZABLE)
List<ScheduleTriggerPredicate> predicates = ...
3
votes
1answer
110 views
How to load a serialized file back to an arrayList
ive looked at a few problems on this matter already but couldnt resolve my issue.
As you can see below, i save all the objects in my Patient ArrayList(pList - which is private at the top of the ...
0
votes
1answer
74 views
How to send custom object using serialization?
I'm new to Java. I need to send over socket the file content, together with a double number. My idea is to wrap these two fields into a custom object. Since object File is not serializable, how to ...
0
votes
1answer
37 views
Java: is it possible to create two objects during different runtimes with the same identity?
I don't have a computer science background. I am using DB4o and want to make sure I get one unique object back when I use code like this:
public List<Object> getListOfObjects(final Object o){
...
2
votes
1answer
64 views
What are the consequences of a JAXB object not implementing serializable?
I am hoping someone could clarify this for me so that I can better understand how marshalling of JAXB objects work.
From reading and looking at examples it is my understanding that a JAXB object must ...
0
votes
2answers
106 views
Can't get view scope working for my ManagedBeans
I'm using JSF 2 with Spring 3 in my project and until now, I'm just using request and session scopes. I want to use view scope for some of my JSF beans (for multiple reasons).
The problem is that ...
0
votes
1answer
134 views
Communication between java socket and android using Serializable objects
My situation right now is quite wired, I have for one side Android app running a service with a network thread.
On the other side a java application runing on my laptop (win8). The java app is ...
0
votes
0answers
17 views
How to quickly test if a class is serializable in Eclipse?
For an object to be serializable in Java, one has to make sure that its own class and other classes that it uses internally are all serializable. Is there a easy way in Eclipse to automate this ...
0
votes
3answers
69 views
The Class Which implements Serializable needs to impliment some methods?
I know that Serializable is a marker interface. Then what the below method signatures mean?
private void writeObject(java.io.ObjectOutputStream out)
throws IOException
private void ...
1
vote
1answer
47 views
How to serialize a PHP SplHeap for storing into memcached
I am facing a problem in which I would like to store a SplHeap (or any other kinds of Spl heap-like objects such as SplPriorityQueue, SplMinHeap, SplMaxHeap) into a location of my Memcached in order ...
0
votes
1answer
58 views
Overriding methods in class implementing Serializable
I am trying to create a distributed processing system on Android through Bluetooth, so I created a class that implements Serializable, made a method to serialize and deserialize that object so that I ...
0
votes
1answer
43 views
Can the Spring cache framework be used to cache a non-serializable objects?
I have a requirement to cache an object that can't be serialized. I am looking for some methodology to cache these kind of objects via a Wrapper. Can it be done ?
Please link-up some useful ...
0
votes
2answers
108 views
ObjectInputStream throws EOFException
I'm writing a class to keep track of competition data at a tournament. I want to store this class to a file, so am using an ObjectInputStream. The class I am writing implements Serializable. I'm ...
-1
votes
5answers
114 views
java.io.NotSerializableException thrown even when serializable is implemented
I'm trying to save a map into a file but I'm getting java.io.NotSerializableException. I know this means that I have to implement Serializable to the class. The problem is that It's throwing the error ...
0
votes
1answer
548 views
Android ArrayList of custom objects - Save to SharedPreferences - Serializable?
I have an ArrayList of an object. The object contains the types 'Bitmap' and 'String' and then just getters and setters for both. First of all is Bitmap serializable?
How would I go about serializing ...
0
votes
1answer
35 views
saving created tabs with their data
The program i am doing is a bit of a "to do list", where the user creates "tasks" that he has to do in a future. These tasks are organized in different tabs, according to what this tasks are related.
...
1
vote
1answer
77 views
Restore State after process is killed
I have implemented onRestoreInstanceState and onSaveInstanceState. They both work successfully when the app is minimized (by pressing the home button, or another activity is in the foreground). ...
0
votes
0answers
22 views
Serialization Error [duplicate]
Possible Duplicate:
Unable to serialize the session state
While executing a .aspx page i am getting the following error. Can you please let me know how can i solve it.
...
0
votes
1answer
1k views
Unable to serialize the session state
While executing a .aspx page i am getting the following error. Can you please let me know how can i solve it.
Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET ...
0
votes
2answers
167 views
Java Object Streams and java.io.EOFException
In a fairly simple program I wrote, I am saving an object (a game which contains a few other objects) using ObjectOutputStream. My first question is, when I remove "implements Serializable" from any ...
1
vote
0answers
38 views
How to refactor a project which uses both Serialisable and DataContract to use just DataContract
I have a project which serialises its data using DataContractSerializer. Unfortunately, the persistable classes were not all tagged with DataContract - some are tagged with Serializable and some with ...
2
votes
2answers
41 views
Store the actual class logic/blueprint and load it again
If I have a class like this:
class Foo implements HasBarMethod {
public double bar(double x) {
return x*x;
}
}
Now I have
Foo foo = new Foo();
...
0
votes
3answers
79 views
How is serialVersionUID serialized in Java?
Class members (static) cannot be serialized. The reason is obvious - they are not held by the object(s) of the class. Since they are associated with the class (rather than the object of that class), ...
1
vote
1answer
113 views
How to put a runnable into bundle?
I want to pass a Runnable into an activity via bundle, so that runnable must run when onCreate fires. I wrote a class which implements Serializable but it causes exception: ...
0
votes
2answers
70 views
FTPClient not serializable in Apache Wicket
I am using Apache Wicket with Apache Commons Net.
But when I define
new FTPClient(); //apache commons net library
I get an exception
org.apache.commons.net.ftp.FTPClient ...
0
votes
2answers
821 views
What is the difference between “conflict serializable” and “conflict equivalent”?
In database theory, what is the difference between "conflict serializable" and "conflict equivalent"? My textbook has a section on conflict serializable but glosses over conflict equivalence. These ...
0
votes
2answers
93 views
Java Serializable failure
I've have a class called Expression that im trying to serialize using the following load()/save() functions. It used to work fine, after making some changes to my code and the Expression class, a call ...
0
votes
1answer
128 views
Should Java DTO's implement Serializable for BlazeDS
When mapping Java data object to Flex value objects the code works even though the java classes do not implement Serializable.
So even though code will work without it, should it? As in is it good ...
0
votes
0answers
103 views
Android Store Images Via Serializing or Just Remember Image Filepath? / What Is More Efficient? [Mono Android]
I've searched the web and couldn't find a good answer to this question, so I'm praying you guys do. So I'm opening this up to any discussion related to the topic. Thanks.
Objective
What I'm trying ...






