I am trying to serialize my object to an xml file, the problem is that some of the instance variables of this object are not written in the xml file. I don't know why are they ignored and how to get the serialize method to write every variable in the xml file. I have noticed that when I set (using the setter) some of these variables are more likely to be written in xml file.
What I am asking:
1- I want to know why some of the instance variables are not written inside the XML file when their Object is serialized.
2- How to enforce all instance variables of my object to be written into the file, when I serialize that object to XML.
my class
package DBMS;
import JDBC.ResultSetMetaData;
public class Column {
private String colName= "";
private String type="";
private boolean isPrimary= false;
private boolean isAutoIncrement= false;
private int NullableState = ResultSetMetaData.columnNullableUnknown;
private boolean isReadOnly= false;
private boolean isSearchable= true;
private String tableName= "unknown";
private int incrementNextValue = 1;
public Column() {
// TODO Auto-generated constructor stub
}
public Column(String n, String t) {
colName = n;
type=t;
}
public String getTableName() {
return tableName;
}
public void setTableName(String s) {
tableName = s;
}
public String getColName() {
// TODO Auto-generated method stub
return colName;
}
public void setColName(String s) {
// TODO Auto-generated method stub
colName = s;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public boolean isPrimary() {
return isPrimary;
}
public void setPrimary(boolean isPrimary) {
this.isPrimary = isPrimary;
}
public boolean isAutoIncrement() {
return isAutoIncrement;
}
public void setAutoIncrement(boolean isAutoIncrement) {
this.isAutoIncrement = isAutoIncrement;
}
public int getNullableState() {
return NullableState;
}
public void setNullable(int Nullable) {
this.NullableState = Nullable;
}
public boolean isReadOnly() {
return isReadOnly;
}
public void setReadOnly(boolean isReadOnly) {
this.isReadOnly = isReadOnly;
}
public boolean isSearchable() {
return isSearchable;
}
public void setSearchable(boolean isSearchable) {
this.isSearchable = isSearchable;
}
public int getIncrementNextValue() {
return incrementNextValue;
}
public void setIncrementNextValue(int incrementNextValue) {
this.incrementNextValue = incrementNextValue;
}
}
method serialize
public void serializeObjectToXML(String xmlFileLocation, ArrayList<Column> objectToSerialize) throws Exception {
FileOutputStream os = new FileOutputStream(xmlFileLocation);
XMLEncoder encoder = new XMLEncoder(os);
encoder.writeObject(objectToSerialize);
encoder.close();
os.close();
}
sample xml output
<?xml version="1.0" encoding="UTF-8"?>
-<java class="java.beans.XMLDecoder" version="1.7.0_07">
-<object class="java.util.ArrayList">
-<void method="add">
-<object class="DBMS.Column">
-<void property="autoIncrement"> <boolean>true</boolean> </void>
-<void property="colName"> <string>ID</string> </void>
-<void property="readOnly"> <boolean>true</boolean> </void>
-<void property="tableName"> <string>testSerialize</string> </void>
-<void property="type"> <string>int</string> </void> </object> </void>
-<void method="add">
-<object class="DBMS.Column">
-<void property="colName"> <string>Name</string> </void>
-<void property="primary"> <boolean>true</boolean> </void>
-<void property="tableName"> <string>testSerialize</string> </void>
-<void property="type"> <string>string</string> </void> </object> </void> -<void method="add">
-<object class="DBMS.Column">
-<void property="colName"> <string>info</string> </void>
-<void property="tableName"> <string>testSerialize</string> </void> -<void property="type"> <string>string</string> </void> </object> </void>
-<void method="add">
-<object class="DBMS.Column">
-<void property="colName"> <string>data</string> </void>
-<void property="tableName"> <string>testSerialize</string> </void>
-<void property="type"> <string>string</string> </void> </object> </void> </object> </java>