自己在公司网站开发总用DWR开发的一个简单聊天
本人也是在网站开发地图时有到了这个技术,刚学习DWR半个月
就把随手写的一个简单聊天来给大家共享,切磋一下。
由于考虑到某些局部原因,只发表了一些重要技术方面的资料,没有把全部东西共享。请个人体谅。
由于DWR2.0有个Bug ,我用的DWR1.0,但是,它必须用JDK1.4
dwr.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dwr PUBLIC "-//GetAhead Limited//DTD Direct Web Remoting 1.0//EN" "http://www.getahead.ltd.uk/dwr/dwr10.dtd">
<dwr>
<init></init>
<allow>
<create creator="new" javascript="CityChatsend" scope="session">
<param name="class" value="com.aaa.CharChat.DWR.DWRCityChar_send"/>
<include method="Chat_send"/>
</create>
<create creator="new" javascript="CityChatRead" scope="session">
<param name="class" value="com.aaa.CharChat.DWR.DWRCityChar_Read"/>
<include method="ChatRead"/>
</create>
<create creator="new" javascript="CityChatInit" scope="application">
<param name="class" value="com.aaa.CharChat.DWR.DWRCityChar_Init"/>
<include method="getNew_Old"/>
<include method="setNew_Old"/>
</create>
</allow>
</dwr>
DWRCityChar_send JAVA文件
package com.aaa.CharChat.DWR;
import java.sql.*;
import java.util.*;
import com.db.DatabaseConnection;
import com.aaa.CharChat.initSQL.CityChart_InitSQL;
import java.util.Date;
import java.text.SimpleDateFormat;
/**
*Title : 魅力城市聊天保存初始变量
*Author : JAVA^_^枭龙---孙德华
*Project: 数字城市
*Date : 2006-09-9
**/
public class DWRCityChar_Init
{
private static int now_ChatId=0;
private static String InitSay="[公告^_^]:欢迎大家入住魅力城市^_^";
private static String InitError="[公告^_^]:对不起!系统故障!我们会尽快解决!";
private static String New_Old="0";
public static String getInitError()
{
return InitError;
}
public static String getNew_Old()
{
return New_Old;
}
public static void setNew_Old()
{
New_Old="0";
}
public static synchronized void setInitSay(String Say)
{
InitSay=Say;
}
public static synchronized int getnow_ChatId()
{
if(now_ChatId==0)
{
int temp_ID=getRenow_ChatId();
if(temp_ID>0)
{
setnow_ChatId(temp_ID);
}else
{
startnewChat();
}
}
New_Old="1";//加载聊天记录
return now_ChatId;
}
public static synchronized void setnow_ChatId(int ChatId)
{
now_ChatId=ChatId;
}
public static synchronized void startnewChat()
{
Connection conn=null;
PreparedStatement prepare=null;
try
{
conn=DatabaseConnection.getConnection();
prepare=conn.prepareStatement(CityChart_InitSQL.getinsertnewChat());
Date online=new Date();
SimpleDateFormat fo=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String riqi=fo.format(online);
prepare.setString(1,riqi);
prepare.setString(2,InitSay);
int result=prepare.executeUpdate();
if(result>0)
{
setnow_ChatId(result);
}
else
{
startnewChat();
}
prepare.close();
conn.close();
}catch(Exception we)
{
System.out.println(we.getMessage());
}finally
{
try
{
if(!conn.isClosed())
{
prepare.close();
conn.close();
}
}
catch(Exception ew)
{
}
}
}
public static int getRenow_ChatId()
{
Connection conn=null;
PreparedStatement prepare=null;
ResultSet result=null;
int Return=0;
try
{
conn=DatabaseConnection.getConnection();
prepare=conn.prepareStatement(CityChart_InitSQL.getselectnewChatId());
result=prepare.executeQuery();
if(result.next())
{
Return=result.getInt("Id");
}
result.close();
prepare.close();
conn.close();
}catch(Exception we)
{
Return=-1;
System.out.println(we.getMessage());
}finally
{
try
{
if(!conn.isClosed())
{
prepare.close();
conn.close();
}
}
catch(Exception ew)
{
}
}
return Return;
}
}
DWRCityChar_send JAVA文件
package com.aaa.CharChat.DWR;
import java.sql.*;
import java.util.*;
import com.db.DatabaseConnection;
import com.aaa.CharChat.DWR.DWRCityChar_Init;
import com.aaa.CharChat.initSQL.CityChart_InitSQL;
/**
*Title : 魅力城市聊天发送
*Author : JAVA^_^枭龙---孙德华
*Project: 数字城市
*Date : 2006-9-9
**/
public class DWRCityChar_send
{
public int Chat_send(String User_name,String Content)
{
int Return=0;
try
{
String result="["+User_name+"]说:"+Content;
int nowId=DWRCityChar_Init.getnow_ChatId();
if(nowId>0)
{
Return=dosend(nowId,result);
}else
{
Return=-2;
}
}catch(Exception we)
{
}
return Return;
}
public int dosend(int nowId,String result)
{
Connection conn=null;
PreparedStatement prepare=null;
PreparedStatement prepare1=null;
ResultSet resu=null;
String Content="";
int Return=0;
try
{
conn=DatabaseConnection.getConnection();
prepare=conn.prepareStatement(CityChart_InitSQL.getselectChatbyId());
prepare1=conn.prepareStatement(CityChart_InitSQL.getupdateChatbyId());
prepare.setInt(1,nowId);
resu=prepare.executeQuery();
if(resu.next())
{
Content=resu.getString("Content");
}
resu.close();
prepare.close();
if(Content.length()>4000)
{
DWRCityChar_Init.startnewChat();
nowId=DWRCityChar_Init.getnow_ChatId();
}
Content=result+"\n"+Content;
prepare1.setString(1,Content);
prepare1.setInt(2,nowId);
Return=prepare1.executeUpdate();
prepare1.close();
conn.close();
}catch(Exception we)
{
Return=-1;
System.out.println(we.getMessage());
}finally
{
try
{
if(!conn.isClosed())
{
prepare.close();
prepare1.close();
conn.close();
}
}
catch(Exception ew)
{
}
}
return Return;
}
}
DWRCityChar_Read java文件
package com.aaa.CharChat.DWR;
import java.sql.*;
import java.util.*;
import com.db.DatabaseConnection;
import com.aaa.CharChat.DWR.DWRCityChar_Init;
import com.aaa.CharChat.initSQL.CityChart_InitSQL;
/**
*Title : 魅力城市聊天发送
*Author : JAVA^_^枭龙---孙德华
*Project: 数字城市
*Date : 2006-9-9
**/
public class DWRCityChar_send
{
public int Chat_send(String User_name,String Content)
{
int Return=0;
try
{
String result="["+User_name+"]说:"+Content;
int nowId=DWRCityChar_Init.getnow_ChatId();
if(nowId>0)
{
Return=dosend(nowId,result);
}else
{
Return=-2;
}
}catch(Exception we)
{
}
return Return;
}
public int dosend(int nowId,String result)
{
Connection conn=null;
PreparedStatement prepare=null;
PreparedStatement prepare1=null;
ResultSet resu=null;
String Content="";
int Return=0;
try
{
conn=DatabaseConnection.getConnection();
prepare=conn.prepareStatement(CityChart_InitSQL.getselectChatbyId());
prepare1=conn.prepareStatement(CityChart_InitSQL.getupdateChatbyId());
prepare.setInt(1,nowId);
resu=prepare.executeQuery();
if(resu.next())
{
Content=resu.getString("Content");
}
resu.close();
prepare.close();
if(Content.length()>4000)
{
DWRCityChar_Init.startnewChat();
nowId=DWRCityChar_Init.getnow_ChatId();
}
Content=result+"\n"+Content;
prepare1.setString(1,Content);
prepare1.setInt(2,nowId);
Return=prepare1.executeUpdate();
prepare1.close();
conn.close();
}catch(Exception we)
{
Return=-1;
System.out.println(we.getMessage());
}finally
{
try
{
if(!conn.isClosed())
{
prepare.close();
prepare1.close();
conn.close();
}
}
catch(Exception ew)
{
}
}
return Return;
}
}
用到的JAVASCRIPT JS文件
/**
*Title : 魅力城市聊天
*Author : JAVA^_^枭龙---孙德华
*Project: 数字城市
*Date : 2006-09-9
**/
var Send_state=0;//发送状态
var Chat_sendTime=500;
var Chat_sendStart;
var Chat_sendEnd;
var Chat_sendstop;
var Chat_result;
var Chat_startWrite;
var Chat_InitStart;
var Chat_Readtime=500;
function Chathotsend()
{
if(event.keyCode==10)
{
ChatSend();
}
}
function getChat_Content()
{
var Content=null;
var obj=document.getElementById('chat_input');//获取聊天内容
if(typeof(obj)=='object')
{
Content=obj.value;
if(Content!=null&&Content.length>400)
{
alert('对不起!你的聊天内容过长,请你说话要简练扼要!');
}
}else
{
Content=null;
alert('程序内部出现异常,抱歉!我们会尽快解决');
}
return Content;
}
function ChatSend()
{
var UserName="";
var obj=document.getElementById('Chat_User_name');//获取聊天内容
if(typeof(obj)=='object')
{
UserName=obj.value;
}else
{
UserName==null;
alert('程序内部出现异常,抱歉!我们会尽快解决');
return;
}
var Content=getChat_Content();
if(Content==null||Content=='')
{
ShowAlert('请您输入聊天内容!');
alert_time=setTimeout('ShowAlertCLose()',alert_showtime);
alert('请您输入聊天内容!');
return;
}
Chat_sendstop=setTimeout('ShowAlert()',Chat_sendTime);
doChatSend(UserName,Content);
var chatobj=document.getElementById('chat_input');
chatobj.value='';
chatobj.focus();
}
function doChatSend(UserName,Content)//聊天发送
{
Chat_sendStart=new Date();
CityChatsend.Chat_send(UserName,Content,Chat_doResult);
}
function Chat_doResult(Return)//结果显示
{
Send_state=Return;
Chat_sendEnd=new Date();
var temp=Chat_sendEnd-Chat_sendStart;
if(temp>50)
{
Chat_sendTime=temp;
}
}
function ShowAlert()
{
clearTimeout(Chat_sendstop);
if(Send_state==-1)
{
alert('聊天提交时,出现数据库插入异常!抱歉!请你重新输入');
}else if(Send_state==-2)
{
alert('对不起!聊天系统出现异常,给你带来不便。在此,我代表AAA国际向你表示抱歉……');
}
}
function ChatInit()
{
setInterval('ChatRead()',Chat_Readtime);
}
function ChatRead()
{
var chat_updiv=document.getElementById('chat_input_updiv');
if(chat_updiv.style.display=='')
{
CityChatRead.ChatRead(getChatContent);
Chat_startWrite=setTimeout('WriteChatContent()',1000);
}
}
function WriteChatContent()
{
clearTimeout(Chat_startWrite);
var obj=document.getElementById('chat_content');
if(typeof(obj)=='object')
{
if(Chat_result!=null&&Chat_result!='')
{
obj.value=Chat_result;
}else
{
obj.value='数据加载中......';
}
}else
{
alert('程序内部出现异常,抱歉!我们会尽快解决');
}
Chat_result=null;
}
function getChatContent(result)
{
Chat_result=result;
}
分享到:
相关推荐
10. **实际项目案例**:书中可能会包含多个实际项目案例,如创建实时动态表单、构建交互式图表、实现聊天功能等,以帮助读者理解DWR在实际开发中的应用。 提供的源码可能包含与书中的示例项目相对应的代码,读者...
### DWR与界面开发教程知识点概述 #### 一、DWR简介 DWR(Direct Web Remoting)是一种开源...通过以上详细的知识点介绍,希望能够帮助读者全面了解DWR与界面开发的相关技术和实践技巧,从而更好地应用于实际项目中。
10. **实战示例**:通过实际项目示例,比如构建一个实时聊天应用或动态图表展示,来加深对DWR的理解和应用。 在"DWR.pdf"这个文件中,你可以找到关于这些知识点的详细解释、代码示例和实践指导。通过阅读和实践,你...
通过阅读《DWR 2.0中文文档》,开发者可以深入了解DWR的工作原理,学习如何在项目中有效利用DWR来提升Web应用的交互性和用户体验。文档的深入浅出和通俗易懂使得学习过程更为轻松,是DWR初学者的必备参考资料。
1. **简单接口**:DWR提供了一种简单的JavaScript API,使得开发者可以通过JavaScript直接调用Java方法,仿佛这些方法是本地函数一样。 2. **自动映射**:DWR能自动将Java对象转换为JavaScript对象,反之亦然,简化...
DWR的核心功能是提供了一个简单的方法来调用服务器上的Java方法,并将结果直接返回到客户端的JavaScript中。 本套DWR学习资料旨在帮助初学者快速掌握DWR的基本概念和使用技巧。通过实例和详细的说明,你可以系统地...
10. **实战应用**:DWR广泛应用于富客户端应用开发,如实时聊天系统、动态表格、图表绘制等,它使得Web应用具有更接近桌面应用的用户体验。 在压缩文件中,"dwr.doc"可能是DWR的详细技术文档,包含API参考、示例...
在Java Web开发中,DWR被广泛用于创建动态、交互式的用户界面,尤其是在需要服务端主动向客户端推送数据的场景下,其优势尤为明显。 1. **DWR基础概念** - **Remoting**:远程方法调用,即允许客户端JavaScript...
《Direct Web Remoting 2(DWR 2):实战项目》是一本深入探讨DWR技术的专业书籍,尤其适合对Java Web开发有兴趣的读者。DWR(Direct Web Remoting)是一个开源框架,它允许JavaScript在浏览器和服务器之间进行双向...
DWR(Direct Web Remoting)是一种Java库,用于在浏览器和服务器之间进行实时、安全的双向通信,使得JavaScript可以直接调用...无论是初学者还是有经验的开发者,都能从中受益,快速上手并熟练运用DWR进行AJAX开发。
8. **实战项目**:提供多个实际项目案例,如构建实时聊天应用、在线协作工具等,帮助读者将理论知识应用于实践。 9. **优化与调试**:介绍DWR的性能优化技巧,以及如何利用DWR的内置调试工具进行问题排查。 10. **...
8. **实战应用:**通过实际项目或示例代码来练习DWR,例如创建一个实时聊天应用或者动态数据展示功能。 9. **DWR与AJAX框架的整合:**了解DWR与其他AJAX框架(如jQuery、Prototype等)的结合使用,提升用户体验。 ...
实战部分可能涉及创建简单的DWR示例,例如用户登录验证、动态表格更新、实时聊天室等,这些实例可以帮助你更好地理解DWR的实际应用。 5. **最佳实践与优化** 在学习过程中,你还将了解到如何优化DWR的使用,比如...
2. **环境搭建**:如何在Java项目中添加DWR依赖,配置Web应用的web.xml和dwr.xml文件,以启用DWR服务。 3. **Java后端**:创建Java类并暴露方法,这些方法可以通过DWR在JavaScript中调用。这涉及到使用DWR的`@...
Direct Web Remoting (DWR) 是一个开源Java库,它允许JavaScript在Web浏览器中与服务器端的Java对象进行交互,从而实现动态、实时的Web应用。这个“dwr官方资料和搜集资料大全”包含了丰富的资源,帮助开发者深入...
**DWR 2 实战项目** Direct Web Remoting (DWR) 是一种开源JavaScript库,它允许在浏览器和服务器之间进行实时的、安全的、无需插件的双向通信。DWR 2 版本是在DWR 1.x的基础上进行升级和优化的版本,提供了更多的...
9. **实战应用**:DWR广泛应用于富客户端应用的开发,如表单验证、动态加载数据、无刷新分页等。通过DWR视频教程,你可以学习如何将这些技术应用到实际项目中。 在学习DWR的过程中,配合Ajax基础是非常有益的。Ajax...
DWR,全称为Direct Web Remoting,是一款开源的Java库,允许JavaScript在浏览器和服务器之间进行实时的双向通信,极大地简化了Web应用中的Ajax开发。DWR使得Web开发者能够像操作本地对象一样,直接在客户端调用...