-
JAVA 论坛完整源码下载(含数据库)
JAVA 论坛完整源码下载(含数据库)
- 2014-04-24下载
- 积分:1
-
基于ssh的校园宿舍管理系统(全原装手打,含数据库脚本)
该校园宿舍管理系统采用SSH jsp web技术框架而成,具体功能包括: 1.楼层管理员管理 2.学生管理 3.楼层管理 4.宿舍管理 5.学生入住登记 6.学生寝室调换 7.学生迁出登记 8.学生缺勤记录 9.修改密码 10.退出登录 初始界面登录有三种身份,可自由选择,具体登录请自行查询数据库登录,好了不多说了,好货!
- 2019-11-16下载
- 积分:1
-
测验系统
此项目包含一个测验系统,有的计时器,科目,计分系统和开发使用 java 的波动。一切都是使用 Netbeans 轻松地编辑。
- 2022-07-20 04:23:03下载
- 积分:1
-
android 语音识别例子源码下载
android 语音识别例子源码下载
- 2015-04-30下载
- 积分:1
-
微波炉模拟控制器
具有控制微波炉工作的程序,有提示,设定,显示时间等个种功能。
- 2022-01-25 16:54:33下载
- 积分:1
-
TF卡实验(读写TF卡)
【实例简介】SPI方式读写TF卡.zip
- 2021-07-14 00:32:03下载
- 积分:1
-
jsp学生宿舍管理系统(源码+数据库+截图)
学生宿舍管理系统源码加数据库
- 2019-06-16下载
- 积分:1
-
cartoon_Application
基于安卓的高仿快看漫画项目源码,只是仿照了UI部分,没有实际功能。仿照的UI有设置、分类、热门、首页按星期展示内容等部分。一个常见展示类app的大体框架就是这些了。可以在本项目基础上自己二次开发。(Based on Android s high imitation fast look at the comic project source code, just modeled on the UI section, there is no practical function. Modeled on the UI have set, classification, popular, home page by week display content and other parts. A common display of the general framework of the class app is these. Can be based on the project itself, the two development.)
- 2016-09-03 10:27:36下载
- 积分: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
-
android listview异步加载网络图片的三种方式 示例源码(官方推荐)
android listview异步加载网络图片的三种方式 示例源码(官方推荐)
- 2014-04-13下载
- 积分:1