上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 51 下一页

2012年1月2日

JAVA在命令行界面中进行输入数据的方法

摘要: How to input your personal data from the default command interface.It used the System.in.read, contrast to the System.out.print.package com.han; import java.io.*; /** * How to input your personal data from the default command interface. * <p> * It used the System.in.read, contrast to the Syste 阅读全文

posted @ 2012-01-02 18:38 java课程设计 阅读(360) 评论(0) 推荐(0) 编辑

JAVA中File的相关操作

摘要: Creation of a file if it does not exist; Deletion of a file if it already exists.package com.han; import java.io.File; /** * Creation of a file if it does not exist; * Deletion of a file if it already exists. * @author han * */ public class FileTest { public static void main(String[] args) ... 阅读全文

posted @ 2012-01-02 18:30 java课程设计 阅读(250) 评论(0) 推荐(0) 编辑

JAVA中Icon接口的应用(以JLabel为例)

摘要: This example shows the drawing of an icon using the Icon interface for the JLable component.package com.han; import java.awt.*; import javax.swing.*; /** * This example shows the drawing of an icon using the Icon interface * for the JLable component. * @author han * */ public class DrawIcon i... 阅读全文

posted @ 2012-01-02 18:07 java课程设计 阅读(391) 评论(0) 推荐(0) 编辑

JAVA中JDialog的举例

摘要: This program demonstrates the creation of a JDialog from a super-window. The created dialog is on the mode "Modal".package com.han; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*; /** * This program demonstrates the creation 阅读全文

posted @ 2012-01-02 17:44 java课程设计 阅读(438) 评论(0) 推荐(0) 编辑

JAVA this关键字用在构造方法中

摘要: this 关键字用在构造方法中。package com.han; /** * this 关键字用在构造方法中。 * @author han * */ public class ThisUse { public ThisUse() { this("this调用无参构造方法之前先调用有参构造方法"); //it is equivalent to : new ThisUse("this调用无参构造方法之前先调用有参构造方法"); System.out.println("this调用无参构造方法"); } public ThisUse(Str 阅读全文

posted @ 2012-01-02 06:49 java课程设计 阅读(196) 评论(0) 推荐(0) 编辑

JAVA中Map集合的使用举例

摘要: 首先创建一个Emp类,再将几个Emp对象添加到Map集合中。 Emp的id作为Map的键,并将id为“005”的对象从集合中删除。package com.han; import java.util.*; /** * 首先创建一个Emp类,再将几个Emp对象添加到Map集合中。 * Emp的id作为Map的键,并将id为“005”的对象从集合中删除。 * @author han * */ public class MapApps { @SuppressWarnings({ "unchecked", "rawtypes" }) public static v 阅读全文

posted @ 2012-01-02 06:40 java课程设计 阅读(366) 评论(0) 推荐(0) 编辑

JAVA Set与List集合区别

摘要: 分别向Set集合和List集合中添加"A","a","c","C","a"5个元素, 观察重复的a值能否在List或者Set中成功添加。package com.han; import java.util.*; /** * 分别向Set集合和List集合中添加"A","a","c","C","a"5个元素, * 观察重复的a值能否在List或者Set中成功添加。 * @author han * */ 阅读全文

posted @ 2012-01-02 06:31 java课程设计 阅读(435) 评论(0) 推荐(0) 编辑

JAVA中List应用简介

摘要: 将1~100之间的所有正整数存放在一个List集合中, 并将集合中索引位置是10的对象从集合中移除。package com.han; import java.util.*; /** * 将1~100之间的所有正整数存放在一个List集合中, * 并将集合中索引位置是10的对象从集合中移除。 * @author han * */ public class ListApps { @SuppressWarnings("unchecked") public static void main(String[] args) { @SuppressWarnings("rawty 阅读全文

posted @ 2012-01-02 05:11 java课程设计 阅读(308) 评论(0) 推荐(0) 编辑

2012年1月1日

Extjst系统集成与应用开发平台(一)

摘要: 前言:在java web开发中,关于系统框架以及管理模块几乎都可以是通用的,只是各个项目业务上不同而已,所以自己抽出时间开发出这个一个通用的开发平台,定制自己的开发规范,提高开发效率首先给大家展示哈界面效果(1)系统登录界面(2)登录后的主界面(3)用户管理模块(4)选择菜单资源模块:(5)给用户指定角色(6)指定操作功能权限(7)菜单管理模块(8)按钮定制(9)定制菜单按钮(10)图表模板以上仅仅是Extjs系统集成与应用开发平台的界面效果,在下篇文章中,我会开始陆陆续续讲解开发框架以及具体的功能实现,源码也会及时公布,如果大家对这个平台有更好的建议,欢迎大家留言,我们一起学习! 阅读全文

posted @ 2012-01-01 13:30 java课程设计 阅读(324) 评论(0) 推荐(0) 编辑

2011年12月30日

java的method反射机制(二)

摘要: 在java web 开发中,我们经常会遇到,从后台获取前台的值,将获取的值通过set方法赋值给实体,然后将实体存入数据库中,有时候对于实体属性多时,代码量很大(其实都是那些set方法),所以针对这点,我们可以通过method反射机制,写个通用的底层方法(对任何实体都有效),这样一来,我们就不用再去一个一个set到实体中去。public static Object ObjectMethod(Object obj,HttpServletRequest request){ Field[] fields = obj.getClass().getDeclaredFields(); for(Field f 阅读全文

posted @ 2011-12-30 15:40 java课程设计 阅读(197) 评论(0) 推荐(0) 编辑

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 51 下一页

导航