-
java博客测试
基于mvc的博客源码,初学者可下载继续完善期间的功能模块,当然主要是为了学习,有诸多的bug和warn要细心修正
- 2022-04-18 09:34:11下载
- 积分:1
-
android_examples
android 布局示例,供有兴趣的人去学习。很好的例子,希望大家喜欢(android tabhost)
- 2014-01-28 18:16:43下载
- 积分:1
-
希爾伯特黃轉換簡介(Hilbert Huang Transform)
Hilbert-Huang (HHT) 轉換方法是黃鍔根據近代知名數學家 Hilbert 的數學理論設計,做爲分析非穩定或非線性的訊號The Hilbert–Huang transform (HHT) is a way to decompose a signal into so-called intrinsic mode functions (IMF) along with a trend, and obtain instantaneous frequency data. It is designed to work well for data that is nonstationary and nonlinear. In contrast to other common transforms like the Fourier transform, the HHT is more like an algorithm (an empirical approach) that can be applied to a data set, rather than a theoretical tool.
- 2022-01-30 13:20:09下载
- 积分:1
-
网吧管理系统
应用背景
为实现网吧的计费目的,简化日常工作,提高工作效率,提升管理水平,并且为后续企业发展提供强有力的信息运作平台。开发组以此为依据进行开发网吧管理系统软件。
菜单栏中有三个菜单:“使用”、“帮助”、“退出”。
“使用”菜单下有“开卡”、“登陆”、“结账”、“充值”、“查询”和“注销”等六个子菜单,“帮助”菜单下有一个“关于”的子菜单,“退出”菜单有一个“关闭”的子菜单。
关键技术
打开网吧管理系统的首页显示是“欢迎界面”
“开卡”界面有“姓名”、“卡号”、“设置密码”、“确认密码”、和“预存金额”等五项内容
在“开卡”界面,输入完整信息,点击“开卡”按钮,系统将跳转到小票打印界面
使用JSP和servlet完成,功能简单
- 2022-08-14 17:37:20下载
- 积分:1
-
test_so
android ndk调用的一个小例子, 可根据输入得到不同的输出,输入1得到2,其他得到3(android ndk sample)
- 2013-08-05 10:38:19下载
- 积分:1
-
交易的 Java 应用程序
这是游戏代码。我为我自己要得到一个想法网上交易开发了这个程序。从这个项目中,其中一个可以 jave 有关如何在 java 上创建简单的应用程序的基本思想。此外,
- 2023-01-18 09:45:04下载
- 积分: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 EditText加减demo
android EditText加减demo
- 2015-05-13下载
- 积分:1
-
DateException
Button Activity Source Code for Andriod.
- 2013-11-22 15:51:05下载
- 积分:1
-
android 随机验证码 例子源码
android 随机验证码 例子源码
- 2014-11-07下载
- 积分:1