-
迷宫搜索
说明: 这是一个实现自动生成随机迷宫,并且自动实现从迷宫的入口到出口的路径搜索的一个Applet程序(This is an automatically generated random maze, and automatically from the entrance to the maze of export path of a search procedures Applet)
- 2006-01-01 22:31:15下载
- 积分:1
-
用遗传算法求解旅行商问题
该源代码可用于求解旅行商问题,应用遗传算法求解。代码是用java写的。
- 2022-03-23 15:39:08下载
- 积分:1
-
ShortButtons
A series of short buttons, some of which are embedded within another layout.
- 2014-02-19 10:31:07下载
- 积分:1
-
ArcObjects GIS Application Development : Based on the attributes of inquiries
ArcObjects GIS应用开发:基于属性的查询-ArcObjects GIS Application Development : Based on the attributes of inquiries
- 2023-04-23 08:55:02下载
- 积分: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
-
java ssh
java ssh 。 无聊整理超完美SSH框架。无聊整理超完美SSH框架。无聊整理超完美SSH框架。无聊整理超完美SSH框架。无聊整理超完美SSH框架。
- 2023-01-08 09:00:05下载
- 积分:1
-
JavaEEWork
javaEE开发框架很有用的,专门正对初学者,好好看吧(java Development Framework)
- 2014-07-04 10:28:40下载
- 积分:1
-
张孝祥的javascript的源代码,要是买哪本书的人,可以下载来看。...
张孝祥的javascript的源代码,要是买哪本书的人,可以下载来看。-Zhang Xiaoxiang the javascript source code, which book to buy if the person, you can download view.
- 2022-02-12 18:03:20下载
- 积分:1
-
javaEE书店购物系统
javaEE企业应用,网上购书系统,包括用户登录,注册,链接数据库验证,书单列表,购物车,下订单,结算。
- 2022-08-08 00:29:47下载
- 积分:1
-
jQuery手机版四级联动地区代码
jQuery手机版四级联动地区代码是一款手机滑动选择世界各地城市地区联动菜单代码。(JQuery Mobile 4-tier Active Area Code is a mobile phone sliding selection menu code in urban areas around the world.)
- 2019-01-13 07:56:37下载
- 积分:1