serializable Questions

5

Solved

I have the warning message given in the title. I would like to understand and remove it. I found already some answers on this question but I do not understand these answers because of an over...
Capello asked 18/2, 2010 at 13:40

3

Solved

I have a class that I need to be able to serialize to a SQLServer session variable and be available over a WCF Service. I have declared it as follows namespace MyNM { [Serializable] [DataContract...
Mashie asked 17/3, 2010 at 10:33

1

Solved

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 m...
Stipule asked 21/3, 2013 at 13:50

2

Solved

ClassCastException occurs randomly to restore Vector in onRestoreInstanceState(). Generally restoring vector is finished well, but sometimes exception occurs. I think it happens when activity is w...
Trin asked 1/7, 2012 at 5:57

3

Solved

I'm using LINQPad to test code (what a great product, I must say) but now I'm encountering an exception when I try to set the Thread.CurrentPrincipal to a custom IPrincipal that is marked with the ...
Koffman asked 13/7, 2012 at 14:2

1

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: "java.lang.RuntimeExcept...
Oedema asked 16/12, 2012 at 8:41

1

I have a class that is marked with [Serializable]. When i return it from the Web API the field names are all funky. Normally the JSON returned is [{"OrderId":797 ... JSON returned when using [S...
Jeraldinejeralee asked 7/11, 2012 at 6:1

1

Been following this tutorial on RMI for Java, trying to translate it to Scala. Instead of interface I use trait, and I annotate methods to indicate the throwing of the RemoteException. Got everyth...
Locomobile asked 3/10, 2012 at 6:35

4

Solved

It has baffled me from the launch of the Serializable interface why I have to incorporate this field in all of my classes. I understand that this interface needs a unique identifier to mark the cla...
Skiffle asked 7/9, 2012 at 1:8

4

Solved

I am confused about this. Since when doing implementation of Serializable class, we need to use classes like FileOutputStream, ObjectOutputStream or something like that. Then why not we just use th...

4

Solved

Possible Duplicate: Why Java needs Serializable interface? According to Serializability in Java docs : Serializability of a class is enabled by the class implementing the java.io.Serializ...
Soda asked 22/7, 2012 at 12:14

3

Solved

Is it possible to create a generic method of type T where T has a specific attribute? E.g.: public static XmlDocument SerializeObjectToXml<T>(T obj) { //... } and I want to serialize on...
Bes asked 4/7, 2012 at 7:54

2

Solved

I have a class TouchPoint which implements Serializable and because it contains Bitmap I wrote writeObject and readObject for that class: private void writeObject(ObjectOutputStream oos) throws IO...
Catharine asked 26/5, 2012 at 22:28

2

Hello im trying to save a image location on sreen to internal storage but I get a NotSerializableException.I went searching and found that the problem is that Bitmap is not designed to be serialize...
Internist asked 21/1, 2012 at 17:28

1

Solved

What file extension would be most suitable when saving a Serializable object to disk? FileOutputStream fos = null; ObjectOutputStream out = null; try { fos = new FileOutputStream(filename); out ...
Lenten asked 3/5, 2012 at 14:13

5

Solved

Is there a penalty to add implements Serializable to a Java class? Impact on size of instantiated object or performance?
Rancor asked 3/5, 2012 at 9:30

1

I'm aware of the performance differences between Parcelable (fast) and Serializable (slow). However, I need to store certain application information persistently, not just within one lifecycle, thu...
Violate asked 5/5, 2011 at 11:6

1

Solved

After getting no answer to my last question, I reformulated the thing to its simplest form. 1 button, 1 clicklistener, 1 serializable object and 1 subroutine to output the serializable object. This...
Aldon asked 17/3, 2012 at 5:8

3

Solved

I have the following class: import java.awt.Color; import java.util.Vector; public class MyClass { private ImageSignature imageSignature; private class ImageSignature implements Serializable ...
Cloris asked 23/2, 2012 at 10:34

3

Solved

I am writing a .NET Remoting application. I have my dll, server, and client all working correctly. However, when I try to change my method call to take an object parameter instead of a simple type ...
Carnage asked 13/2, 2012 at 21:12

1

I like the constructor injection of CDI a lot but now I found a usecase where constructor injection apparently doesn't work as expected. In my example I have two classes. Class "BeanA" has no expl...
Leaseholder asked 12/1, 2012 at 23:34

1

Solved

Is there any viable reason why serialVersionUID field is not named SERIAL_VERSION_UID? According to the docs for java.io.Serializable: A serializable class can declare its own serialVersionUID ...
Derogative asked 12/1, 2012 at 14:6

1

Solved

This is a general question about how to lock range of values (and nothing else!) when they are not exists in table yet. The trigger for the question was that I want to do "insert if not exists", I ...
Critter asked 4/12, 2011 at 10:45

1

Solved

I have the following Hibernate code that is returning an error. The results of my query cannot be cast to Serializable, according to my error message. Can anyone help me? Here is the relevant porti...
Bromide asked 25/11, 2011 at 6:36

2

Solved

I am trying to convert a session scoped JSF managed bean to view scoped. However, when I try to access the xhtml page for this bean, then i get the following error: java.io.NotSerializableExceptio...
Levey asked 28/3, 2011 at 9:33

© 2022 - 2024 — McMap. All rights reserved.