-
java和mysql结合做的系统
用java编写的C/S架构的高仿QQ软件,可以实现私聊,群聊,用户注册,修改个人信息,添加好友,删除好友,发送表情,进入空间,找回密码,记住密码登陆等功能。 并且不同用户登录有不同的头像等,数据库用的是mysql,并附有mysql数据库和文档说明,对于想学习java的人会很有帮助。
- 2022-08-10 10:11:13下载
- 积分:1
-
AndroidGesturePassword
安卓手机的手势密码源码,用户可以设置九宫格密码并校验。(gesture password on android)
- 2013-12-14 20:35:19下载
- 积分:1
-
estore1
本系统实现电子购物,分为客户、商品、订单、定单四个模块.并实现客户的登陆注册功能,该系统成功运行于windows 环境,前台采用MVC设计模式, 使用javaBean实现了Model层的业务逻辑和数据读取,在 View层运用了JSTL核心标签,
在Controller层运用了Servlet。(This system is divided into electronic shopping, customers, goods, orders, orders four modules. And realize the login registration function of customers, the successful operation of the system in the windows environment, the use of MVC design pattern, using the javaBean implementation of the Model layer, business logic and data read in the View layer using JSTL core tags,
Servlet is used in the Controller layer.)
- 2017-10-21 17:35:31下载
- 积分:1
-
android联系人带字母检索源码
android联系人带字母检索源码/** * 联系人列表适配器。 * * @author guolin */public class ContactAdapter extends ArrayAdapter { /** * 需要渲染的item布局文件 */ private int resource; /** * 字母表分组工具 */ private SectionIndexer mIndexer; public ContactAdapter(Context context, int textViewResourceId, List objects) { super(context, textViewResourceId, objects); resource = textViewResourceId; } @Override public View getView(int position, View convertView, ViewGroup parent) { Contact contact = getItem(position); LinearLayout layout = null; if (convertView == null) { layout = (LinearLayout) LayoutInflater.from(getContext()).inflate(resource, null); } else { layout = (LinearLayout) convertView; } TextView name = (TextView) layout.findViewById(R.id.name); LinearLayout sortKeyLayout = (LinearLayout) layout.findViewById(R.id.sort_key_layout); TextView sortKey = (TextView) layout.findViewById(R.id.sort_key); name.setText(contact.getName()); int section = mIndexer.getSectionForPosition(position); if (position == mIndexer.getPositionForSection(section)) { sortKey.setText(contact.getSortKey()); sortKeyLayout.setVisibility(View.VISIBLE); } else { sortKeyLayout.setVisibility(View.GONE); } return layout; } /** * 给当前适配器传入一个分组工具。 * * @param indexer */ public void setIndexer(SectionIndexer indexer) { mIndexer = indexer; }}
- 2014-04-13下载
- 积分:1
-
android利用NDK调用USB摄像头视频显示
android显示USB摄像头视频显示 实现在Android下,USB-uvc摄像头的预览。 利用JNI实现,需要底层有uvc驱动(目前linux 2.6.26以后内核驱动都有支持)
- 2014-10-17下载
- 积分:1
-
Gallery和GridView显示图片
先用一个TabHost将一个Activity分为左右两边,左边菜单点击后用上面一个ImageSwitcher下面一个Gallery显示图片,右边菜单点击后,先用GridView显示网格状的小图片,点击图片之后会跳转到另外一个界面,以全屏的方式显示图片。同时所有图片都支持点击大图显示,长按删除功能。
- 2022-04-14 13:00:30下载
- 积分:1
-
LiveWallPaper
说明: 一个Android动态壁纸的Demo.个人学习的练习作品,有注释.(A Live Wallpaper demo for Android)
- 2011-04-08 11:50:50下载
- 积分:1
-
9731388
symbian 图标停靠在状态栏功能齐全 图标停靠在状态栏功能齐全()
- 2018-07-08 10:48:13下载
- 积分:1
-
决策树
决策树是一种类似流程图的结构,其中内部节点表示对某个属性的测试,每个分支表示测试结果,每个叶节点表示类标签(在计算所有属性后作出的决策)。从根到叶的路径表示分类规则。
- 2023-08-07 09:15:03下载
- 积分:1
-
Mahout 源代码
Apache Mahout 是为分布式/非分布式编程提供了足够的框架实用开放源码机器学习图书馆。它具有可扩展性,并可以处理大量的数据相比,其他机器学习框架。Apache Mahout 是 Apache Hadoop 项目之一。Mahout 包含三种类型的算法: 推荐系统 (专门协同过滤)、 聚类和分类。推荐系统的实现可进一步分为非分布式方法和分布式的方法。推荐系统的分布式实现之一使用 MapReduce,这是可扩展性,适用于处理大规模、 分布式的数据集。其可伸缩性和专注于真实世界的应用程序做出 Mahout 越来越受欢迎的选择为组织设法利用大型机器 Learning.The Apache Mahout 体系结构提供了一套丰富的组件,从中我们可以构建一个自定义的推荐系统选择的算法。Mahout 设计为企业准备用于性能、 可扩展性和灵活性。顶层的包定义了 Apache Mahout 接口,对这些关键的抽象,[] 是: · DataModel· UserSimilarity· ItemSimilarity· UserNeighborhood· 推荐
- 2022-08-05 12:06:52下载
- 积分:1