-
java web学生成绩管理系统
大二时跟朋友一起做的java web 小项目,主要采用jsp代码及javabean来实现,直接放入myeclipse,并桥连数据库即可。对初学java web的童鞋还是很适合的!
- 2022-08-10 15:39:58下载
- 积分:1
-
TCP Client/server aplication
TCP Client/server aplication
- 2022-03-23 12:16:49下载
- 积分:1
-
一个多播的实现程序
一个多播的实现程序-a multicast procedures for the realization
- 2023-04-05 15:35:04下载
- 积分:1
-
Jsplinesql2008
jsp链接sqlserver的方法和过程(jsp to sqlserver line)
- 2010-12-17 16:25:53下载
- 积分:1
-
cntospell
将中文转换成为拼音的程序,其中首字母为大写,姓与名之间有空格(Chinese Pinyin will be converted into programs)
- 2011-10-08 17:15:57下载
- 积分: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
-
MyAppWeixin
仿微信界面,有摇一摇功能,此款软件用来学习android非常有用。(Imitation of micro letter interface, a wave function, this software is very useful to study the android.
)
- 2013-08-11 20:24:27下载
- 积分:1
-
优秀的MPEG2
优秀的MPEG2-TS流分析软件,采用Java编写-Excellent MPEG2-TS stream analysis software, using Java to prepare
- 2022-03-13 17:38:14下载
- 积分:1
-
this a project about java media framework it is a good introduction to java medi...
this a project about java media framework it is a good introduction to java media framework-this is a project about java media framework it is a good introduction to java media framework
- 2022-01-26 18:35:31下载
- 积分:1
-
手机java拼图。java拼图游戏可以运行在移动设备上的…
Java拼图游戏手机版。这款java拼图游戏可以在手机上运行。源文件需要用eclipse打开,在eclipse左侧资源管理器中右键导入,然后选择现有项目到工作区中,点下一步,在选择根目录中选择压缩包解压后的目录,单击完成即可。用eclipse新建项目、新建源文件夹src及对应三个类、新建文件夹pic,与src同目录,放置图片。-Mobile Java jigsaw puzzle. The java jigsaw puzzle can be run on mobile devices. Source files need to use eclipse open eclipse on the left in the Explorer right to import, and then select an existing project to the work area, point the next step, the choice of the root directory choose the directory after extracting archive, click can be completed. New Project with the eclipse, the new source folder src and the corresponding three classes, the new folder, pic, with the same src directory, and place images.
- 2022-11-21 11:00:03下载
- 积分:1