2012年1月8日
摘要: import java.io.*; import java.net.*; public class Server { public static void main(String args[]) throws Exception{ ServerSocket server = new ServerSocket(9999); Socket sock = server.accept(); FileInputStream in = new FileInputStream("E:\\Html\\在网页中插入图片.html"); OutputStream out = sock.g... 阅读全文
posted @ 2012-01-08 00:55 Code大蛇丸 阅读(162) 评论(0) 推荐(0)