📄 tsld096.htm
字号:
<HTML>
<HEAD>
<META HTTP-EQUIV="Context-Type" CONTEXT="text/html;charset=windows-1252">
<meta name="GENERATOR" content="Microsoft Internet Assistant for PowerPoint 97">
<TITLE>Writing on an Object Stream</TITLE>
</HEAD>
<BODY >
<H1>Writing on an Object Stream</H1>
<P><UL>
<H2>import java.io.*;
</H2>
<BR></UL><UL>
<H2>public class SerializeTest {
</H2>
</UL><UL>
<H2> SerializeTest() {
</H2>
</UL><UL>
<H2> String st = new String("This is the message!");
</H2>
</UL><UL>
<H2> try {
</H2>
</UL><UL>
<H2> FileOutputStream f = new FileOutputStream("c:\\test.ser");
</H2>
</UL><UL>
<H2> ObjectOutputStream s = new ObjectOutputStream(f);
</H2>
</UL><UL>
<H2> s.writeObject(st);
</H2>
</UL><UL>
<H2> s.close();
</H2>
</UL><UL>
<H2> }
</H2>
</UL><UL>
<H2> catch (IOException e) { System.out.println(e.getMessage()); }
</H2>
</UL><UL>
<H2> }
</H2>
</UL><UL>
<H2> public static void main(String args[]) { new SerializeTest(); }
</H2>
</UL><UL>
<H2> }
</H2>
</UL><UL>
<H2>
</H2>
</UL><UL>
<H2> </H2>
</UL></P>
<P></P>
<P>
<TABLE>
<TD HEIGHT=100 WIDTH=100> <A HREF="tsld095.htm">Previous slide</A> </TD>
<TD HEIGHT=100 WIDTH=100> <A HREF="tsld097.htm">Next slide</A> </TD>
<TD HEIGHT=100 WIDTH=150> <A HREF="tsld001.htm">Back to first slide</A> </TD>
<TD HEIGHT=100 WIDTH=150> <A HREF="sld096.htm">View graphic version</A> </TD>
</TABLE>
<BR>
</P>
</Body>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -