-
关于Ajax的聊天室
基于Ajax的聊天室,通过学习这些代码,熟悉聊天室的开发流程,掌握编写并配置字符编码过滤器的方法,掌握实时显示在线人员列表的方法,掌握实时显示聊天信息的方法,掌握退出聊天室的两种方法。
- 2022-03-24 20:20:45下载
- 积分:1
-
easyui插件开发的教师点名系统
这是教师点名系统 ,结合easyui js插件用hibernate实现的数据 持久化,struts2逻辑控制,spring ioc,aop实现弱耦合。
- 2022-06-14 02:05:18下载
- 积分:1
-
LinkGame
能实现电脑端双人连连看游戏,里面已设置好关卡,只有在规定时间内通过游戏关卡才能进入下一关,否则游戏失败,同时进行倒计时。(It can realize the double-player continuous watching game on the computer side. The game has been set up a checkpoint. Only through the game checkpoint in the prescribed time can we enter the next level, otherwise the game will fail and the countdown will be made at the same time.)
- 2019-04-03 15:34:59下载
- 积分:1
-
plane
飞机主角在飞行中躲避并攻击前面接连不断的敌人(plane war)
- 2011-12-08 10:39:19下载
- 积分:1
-
Android Intent开发实例
Android Intent开发实例 核心代码:package com.amaker.ch06.app;import com.amaker.ch06.app.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;/** * @author 郭宏志 * 发送Email */public class MainActivity extends Activity { // 声明视图组件 private EditText toEditText,subjectEditText,contentEditText; private Button sendBtn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 实例化视图组件 toEditText = (EditText)findViewById(R.id.toEditText01); subjectEditText = (EditText)findViewById(R.id.subjectEditText01); contentEditText = (EditText)findViewById(R.id.contentEditText01); sendBtn = (Button)findViewById(R.id.sendButton01); // 为按钮添加单击监听器 sendBtn.setOnClickListener(listener); } // 发送按钮单击监听器 private OnClickListener listener = new OnClickListener() { @Override public void onClick(View v) { // 获得输入信息 String to = toEditText.getText().toString(); String subject = subjectEditText.getText().toString(); String content = contentEditText.getText().toString(); // 创建Intent Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); // 设置内容类型 emailIntent.setType("plain/text"); // 设置额外信息 emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{to}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, content); startActivity(Intent.createChooser(emailIntent, "发送邮件...")); } };}
- 2014-11-24下载
- 积分:1
-
the worst of the thing
ilulul8位解码器使用verliog,fpga上的LED,8位解码器使用verliog,fpga上的LED,8位解码器使用verliog,fpga上的LED,8位解码器使用verliog,fpga上的LED,8位解码器使用verliog,fpga上的LED,8位解码器使用verliog,fpga上的LED,8位解码器使用verliog,fpga上的LED,fpga上使用verliog和led的8位解码器
- 2022-02-03 07:42:51下载
- 积分:1
-
MD5加密算法源码
get MD5 of Str是类MD5最主要的公共方法,入口参数是你想要进行MD5变换的字符串返回的是变换完的结果,这个结果是从公共成员digest Hex Str取得的.
- 2022-05-05 21:03:52下载
- 积分:1
-
joda-time-1.6.2源码
用于java程序的日期相关的算法,如相加,相件,区间,分时等,是网上用的很广的类
private void runDateTime() {
System.out.println("DateTime");
System.out.println("=======");
System.out.println("DateTime stores a the date and time using millisecs from 1970-01-01T00:00:00Z internally");
System.out.println("DateTime is immutable and thread-safe");
System.out.println(" in = new DateTime()");
DateTime in = new DateTime();
System.out.println("Millisecond time: in.getMillis():
- 2022-08-22 17:44:27下载
- 积分:1
-
android 可横向滚动的viewgroup 例子源码下载
android 可横向滚动的viewgroup 例子源码下载
- 2015-05-09下载
- 积分:1
-
android 很简单的菜单示例
android 很简单的菜单示例
- 2014-05-29下载
- 积分:1