String st ="Welcome to javaTpoint";privateStringreadObject(ObjectInputStream in)throwsIOException, ClassNotFoundException{// call readFields in readObjectObjectInputStream.GetField g = in.readFields();// save the string and return itreturn(String) g.get("st",null); } } } 輸出: Welcome to j...