mport java.io.*
import java.net.*
public class EchoClient {
public static void main(String args[]) {
try {
Socket connection =new Socket("127.0.0.1", 5050)
BufferedReader input = new BufferedReader(new InputStreamReader(
connection.getInputStream()))
PrintWriter out = new PrintWriter(connection.getOutputStream(),true )
String info
info = input.readLine()
System.out.println(info)
boolean done = false
BufferedReader in = new BufferedReader(new InputStreamReader(System.in))
String sInput
//out.println("BYE")
while (!done) {
info = input.readLine()
System.out.println(info)
}
connection.close()
}
catch (SecurityException e) {
System.out.println("SecurityException when connecting Server!")
}
catch (IOException e) {
System.out.println("IOException when connecting Server!")
}
}
}
打个比方吧,通常情况下,用户注册,那么用户首先得填写好表单,然后点提交,这样表单就会向服务发出一个请求,则服务器处理代码,如果用户存在,则返回一个信息。总之,就是所有的数据需要你点提交后,信息才会发送!而AJAX就相当于是模拟了一个信息发送请求,你可以在很多网站上注册的时候会发现,比如用户名输入“123”,那么它可能会提示你该用户已经存在,而给你的感觉是页面并没刷新,也就是并没有提交表单,而用户名又是存放在数据库内的,也就是说要查询用户名是否存在,就必须得发送表单的里的用户名,然后再在数据库中去查询。
而这个过程就是用了AJAX来处理的,用户输入用户名,当表单的焦点发生变化的时候,则会触发AJAX,然后AJAX模拟一个GET或者POST请求给服务器,服务器就会处理传递过来的数据!而服务器在处理数据的时候,你可以做其它的,比较你可以填写密码或者其它的!
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)