黑马程序员技术交流社区
标题:
网页问题
[打印本页]
作者:
黑马伍仪华
时间:
2012-3-22 09:37
标题:
网页问题
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>百度链接</title>
</head>
<body>
<form action="http://127.0.0.1:10005">
用户名<input type="text">
<input type="submit" avlue="提交按钮">
</form>
</body>
</html>
和服务器连不起来,这是为什么
作者:
黑马伍仪华
时间:
2012-3-22 09:37
package 服务端;
import java.io.*;
import java.net.*;
public class 接受html信息 {
/**
* @param args
*/
public static void main(String[] args) throws Exception{
ServerSocket ss=new ServerSocket(10005);
Socket s=ss.accept();
OutputStream op=s.getOutputStream();
PrintWriter pw=new PrintWriter(op,true);
pw.println("<font size=7 color=red>注册成功</font>");
s.close();
ss.close();
}
}
作者:
lucky_xingxing
时间:
2012-3-22 13:26
首先还是你的流没有关闭哈,这是我修改后的代码 我测试了可以显示注册成功,具体的你照着我的对应下。我得上课去了
import java.io.*;
import java.net.*;
public class test {
/**
* @param args
*/
public static void main(String[] args) throws Exception{
ServerSocket ss=new ServerSocket(10005);
Socket s=ss.accept();
System.out.println(s.getInetAddress().getHostAddress());
OutputStream op=s.getOutputStream();
PrintWriter pw=new PrintWriter(op,true);
pw.println("<font size=7 color=red>注册成功</font>");
pw.close();
s.close();
ss.close();
}
}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<body>
<form action="http://127.0.0.1:10005" method="post">
用户名<input type="text" name="name">
<input type="submit" value="提交按钮">
</form>
</body>
</html>
作者:
lucky_xingxing
时间:
2012-3-22 13:33
最好也在服务端加上让服务器一直启动
public static void main(String[] args) throws Exception{
ServerSocket ss=new ServerSocket(10005);
while(true){
Socket s=ss.accept();
System.out.println(s.getInetAddress().getHostAddress());
OutputStream op=s.getOutputStream();
PrintWriter pw=new PrintWriter(op,true);
pw.println("<font size=7 color=red>注册成功</font>");
pw.close();
s.close();
}
}
作者:
黑马伍仪华
时间:
2012-3-22 16:17
我发现我脑子进水银了,谢谢提醒哈
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2