html5 websockt 示例

阅读更多


示例演示:你每次输入hello 然后点【发送】,页面上的数字就+1
结果如图:



代码如下:


   
        WebSoket Demo
       
   
   
        发送hello的次数:

       
       

       
       
   


后台java代码:
public static Long i=0l;

@Override
      public void onMessage(String data) {
System.out.println(data);
           if ("hello".equals(data)) {
            try {
            i=i+1;
con.sendMessage(i.toString());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
            }
}
  • html5 websockt 示例_第1张图片
  • 大小: 1.6 KB
  • html5 websockt 示例_第2张图片
  • 大小: 1.7 KB
  • 查看图片附件

你可能感兴趣的:(html5)