...
Code Block | ||
---|---|---|
| ||
final class Ser implements Serializable {
private File f;
public Ser() throws FileNotFoundException {
f = new File("c:\\filepath\\filename");
}
}
|
...
Code Block | ||
---|---|---|
| ||
final class Ser { private File f; public Ser() throws FileNotFoundException { f = new File("c:\\filepath\\filename"); } } |
...
Code Block | ||
---|---|---|
| ||
final class Ser implements Serializable {
private transient File f;
public Ser() throws FileNotFoundException {
f = new File("c:\\filepath\\filename");
}
}
|
...