资源简介
这是基于基于Oracle10g 使用java编写的,请您在下载之后按照使用说明进行使用!

代码片段和文件信息
/*
* Copyright (c) 2007 Sun Microsystems Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms with or without
* modification are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the distribution.
* * Neither the name of Sun Microsystems Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* “AS IS“ AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING BUT NOT
* LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT INDIRECT INCIDENTAL
* SPECIAL EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED
* TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE DATA OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY WHETHER IN CONTRACT STRICT LIABILITY OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package clienteditor;
import org.jdesktop.beansbinding.Converter;
/**
* Integer
to String
converter
* that returns zero when the argument cannot be parsed.
*
* @author Jiri Vagner Jan Stola
*/
public class AgeConverter extends Converter {
public String convertForward(Integer arg) {
return String.valueOf(arg);
}
public Integer convertReverse(String arg) {
int value;
try {
value = (arg == null) ? 0 : Integer.parseInt(arg);
} catch (NumberFormatException ex) {
value = 0;
}
return value;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 563200 2009-01-02 17:21 人事管理系统\软件学院实训任务书.doc
文件 3391 2008-12-29 10:44 人事管理系统\人事管理系统\build.xm
文件 4331 2008-12-16 11:18 人事管理系统\人事管理系统\derby.log
文件 66 2008-12-16 08:38 人事管理系统\人事管理系统\derby.properties
文件 82 2008-12-16 07:52 人事管理系统\人事管理系统\manifest.mf
文件 1290 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\AgeConverter.class
文件 1029 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\AgeValidator.class
文件 734 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao$1.class
文件 734 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao$2.class
文件 528 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao$3.class
文件 6033 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao.class
文件 532 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao1$1.class
文件 4466 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao1.class
文件 532 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao2$1.class
文件 4595 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao2.class
文件 532 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao4$1.class
文件 4752 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\biao4.class
文件 832 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenchaxunjiemian$1.class
文件 832 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenchaxunjiemian$2.class
文件 832 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenchaxunjiemian$3.class
文件 832 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenchaxunjiemian$4.class
文件 584 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenchaxunjiemian$5.class
文件 8414 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenchaxunjiemian.class
文件 818 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenxinzichaxun$1.class
文件 818 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenxinzichaxun$2.class
文件 576 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenxinzichaxun$3.class
文件 6095 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\bumenxinzichaxun.class
文件 748 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\chaxun$1.class
文件 716 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\chaxun$2.class
文件 748 2009-01-02 11:18 人事管理系统\人事管理系统\build\classes\clienteditor\chaxun$3.class
............此处省略575个文件信息
- 上一篇:android 4路串口源码,安卓串口上位机
- 下一篇:Android自制手电筒
相关资源
- java串口通信全套完整代码-导入eclip
- jsonarray所必需的6个jar包.rar
- 三角网构TIN生成算法,Java语言实现
- java代码编写将excel数据导入到mysql数据
- Java写的cmm词法分析器源代码及javacc学
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- 推荐算法的JAVA实现
- 基于Java的酒店管理系统源码(毕业设
- java-图片识别 图片比较
- android毕业设计
- java23种设计模式+23个实例demo
- java Socket发送/接受报文
- JAVA828436
- java界面美化 提供多套皮肤直接使用
- 在线聊天系统(java代码)
- 基于Java的图书管理系统807185
- java中实现将页面数据导入Excel中
- java 企业销售管理系统
- java做的聊天系统(包括正规课程设计
- Java编写的qq聊天室
- 商店商品管理系统 JAVA写的 有界面
- JAVA开发聊天室程序
- 在linux系统下用java执行系统命令实例
- java期末考试试题两套(答案) 选择(
- JAVA3D编程示例(建模、交互)
- Java 文件加密传输
- java做的房产管理系统
- 基于jsp的bbs论坛 非常详细
- [免费]java实现有障碍物的贪吃蛇游戏
评论
共有 条评论