⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 message.java

📁 开始学习dwr 聊天程序使用dwr的推模式
💻 JAVA
字号:
package com.lhq;import java.text.SimpleDateFormat;/** * A POJO that represents a typed message * @author Joe Walker [joe at getahead dot ltd dot uk] */public class Message{    /**     * @param newtext the new message text     */    public Message(String newtext)    {        text = newtext;        if (text.length() > 256)        {            text = text.substring(0, 256);        }            }    /**     * @return the message id     */    public String getId()    {        return id;    }    /**     * @return the message itself     */    public String getText()    {        return text;    }    /**     * When the message was created     */    SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");    private String id = sdf.format(System.currentTimeMillis());    /**     * The text of the message     */    private String text;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -