| 接口 | 说明 |
|---|---|
| Constants |
This class store all the system constants member
|
| EncryptionInterface |
加密处理接口。
|
| EnumCharCode |
代码为字符的枚举型接口。
|
| EnumDesc |
描述字符串的枚举型接口。
|
| EnumIntegerCode |
代码为整型的枚举型接口。
|
| EnumMatchInteger |
用于枚举类型进行整数值匹配比较的接口。
|
| EnumMatchString |
用于枚举类型进行字符串值匹配比较的接口。
|
| EnumStringCode |
代码为字符串的枚举型接口。
|
| FixTime |
调整时间的接口。
|
| HttpClientSignInterface |
签名处理接口。
|
| RefreshChecker |
地址刷新地址检查器接口。
|
| SystemNotifyInterface |
系统通知接口。
|
| 类 | 说明 |
|---|---|
| ARACrypt |
Title: hynnet.com Project 加解密类
Description: Eecryption and Decryption
Copyright: Copyright (c) 2005 hynnet.com.
|
| Base64 |
Encodes and decodes to and from Base64 notation.
|
| Base64.InputStream |
A
Base64.InputStream will read data from another
java.io.InputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly. |
| Base64.OutputStream |
A
Base64.OutputStream will write data to another
java.io.OutputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly. |
| BIANMAJIEMA |
用户名,密码解码 BINMAJIEMA.java
|
| BrowserInfo |
浏览器信息类。
|
| BufferedRandomAccessFile |
扩展后的RandomAccessFile类。
|
| BufferedRandomAccessFileRes |
RandomAccessFile类的资源类。
|
| ByteConvert |
字节数据转换工具类。
|
| ChineseComparator |
中文字符串拼音排序比较器。
|
| ChineseFileRenamePolicy |
上传附件重命名的类。
|
| ChineseNameUtil |
处理中国姓名类。
|
| Cmd |
Title: China Telcom SMS
Description:
Copyright: Copyright (c) 2001
Company: AD
|
| CnToSpell |
汉字转拼音类。
|
| Configuration |
This class is for loading the system configuration from property file that
indicated in the web.xml or in the classpath
|
| convcharset | |
| Demo |
Title: XML Servlet 演示
Description: XML Servlet Copyright: Copyright (c) 2001 Company: HYNNET.COM |
| DSAGen | |
| EncryptionFile |
文件加密、界面工具。
|
| EncryptionManager |
This class is a encrytion generator using the encrytion method that specified
in the configuration file, default is SHA
|
| FileOperation |
封装文件操作的类。
|
| FileUpload | |
| FindJarAndClassOfAnno |
查找包含指定注解的Jar包及类的工具。
|
| FindJarAndClassOfMethod |
查找包含指定方法名的Jar包及类的工具。
|
| FindJarOfClass |
从Jar文件中找指定的类。
|
| GeneralHttpParameters |
通用http参数处理类。
|
| GeneralHttpServletRequest |
支持文件上传的统一http请求对象。
|
| GeneralHttpServletResponse |
增强的响应类。
|
| GetURL |
Title: 读取URL模块,不支持FTP
Description: 读取URL功能模块
Copyright: Copyright (c) 2001
Company: HYN
|
| HtmlUtils |
Html处理工具类。
|
| HttpClientUtils |
HttpClient简化编程工具类。
|
| HttpClientUtils.HttpResult |
Http请求结果类。
|
| ImportExcel |
Excel导入工具类。
|
| InstallCert |
安装网站SSL证书工具。
|
| IPAddress |
IP地址高效的处理类。
|
| IPAddressGroup |
IP地址组处理类。
|
| IPLocalizer | |
| LinkedList<E> |
Simple LinkedList implementation.
|
| LinkedListNode<E> |
Doubly linked node in a LinkedList.
|
| LongList |
A simplified List for long values.
|
| MathUtils |
精确计算用的工具类。
|
| MD5 |
Fast implementation of RSA's MD5 hash generator in Java JDK Beta-2 or higher.
|
| MD5InputStream |
MD5InputStream, a subclass of FilterInputStream implementing MD5
functionality on a stream.
|
| MD5OutputStream |
MD5OutputStream is a subclass of FilterOutputStream adding MD5
hashing of the output.
|
| MultipartHttpServletRequest |
文件上传请求封装类。
|
| ObjectComparator |
对象排序用的通用比较器。
|
| PageInfo |
Title: 分页控制类
Description: 处理分页相关
Copyright: Copyright (c) 2001
Company: hynnet.com
分页对象使用例子:
int nSize = ParamUtils.getIntParameter(request, "pageSize", 20);
int nCurrPage = ParamUtils.getIntParameter(request, "currentPage", 1);
String strUserType = ParamUtils.getParameter(request, "usertype", true);
String strKey = ParamUtils.getParameter(request, "key", true);
StringBuffer sbufCondition = net StringBuffer(); // 查询条件
SiteUser[] arraySiteUser;
PageInfo objPage;
LongList lstID;
// 构造分辨查询条件是否改变的字符串
sbufCondition.append(strUserType).append('&').append(strKey);
// 对于更复杂的情况也可以这样: sbufCondition.append("Type=").append(strUserType).append('&Key=').append(strKey);
// 高阶用法还可以使用字符串数组作为判断查询条件是否改变 String[] arrayCondition = new String[] {strUserType, strKey};
objPage = (PageInfo)session.getAttribute("searchSiteUser"); // 保证不重复的Session名称
if (objPage == null || objPage.isConditionChanged(sbufCondition.toString()))
{
// 没有进行过查询或查询条件改变时进行数据查询
SiteUser objMgr = new SiteUser(SiteUser.DATA_PROVIDER, -1);
// 查询数据的代码
if (strUserType.length() > 0)
{
lstID = new LongList(objMgr.searchIDBySource(strUserType, null));
}
else
{
lstID = new LongList(objMgr.getAllID());
}
objPage = new PageInfo(lstID, objMgr, "getSiteUser", SiteUser.class, nSize, nCurrPage, -1);
objPage.setCondition(sbufCondition.toString()); // 保存本次查询条件
session.setAttribute("searchSiteUser", objPage);
}
else
{
// 设置当前页状态
objPage.setPageSize(nSize);
objPage.setCurrentPage(nCurrPage);
}
arraySiteUser = (SiteUser[])objPage.getDataArray();
request.setAttribute("objPage", objPage); // 页面直接获取分页对象,显示分页信息,如当前一页,后一页,首页,最后页,邻近页等链接
request.setAttribute("arraySiteUser", arraySiteUser); // 页面直接获取数据循环输出
|
| PageInfoCondition |
数据分页条件对象。
|
| PageInfoSessionMaker |
自动处理从Session获取分页对象PageInf及缓存分页对象到Session的处理类。
|
| PageInfoSessionMakerByAllData | 已过时
与类PageInfoSessionMaker功能相同。
|
| PageInfoSessionMakerByIds |
自动处理从Session获取分页对象PageInf及缓存分页对象到Session并且通过数据ID生成分页对象的处理类。
|
| PageInfoSessionMakerByMgr |
自动处理从Session获取分页对象PageInf及缓存分页对象到Session并且通过管理类对象生成数据的处理类。
|
| ParamUtils |
Http请求参数处理类。
|
| ProcessUtil |
操作系统进程处理工具类。
|
| ProcessUtil.ProcessInfo | |
| PropertyManager |
Manages properties for the entire PropertyManager system.
|
| RefreshTask |
刷新任务类。
|
| RefreshThread |
页面刷新的工作线程类。
|
| SerializableObject |
可序列化的普通对象。
|
| StringList |
A simplified List for long values.
|
| StringSearchAndReplace |
多字符串批量查找、替换处理的抽象类。
|
| StringUtils |
字符串工具类。
|
| SystemNotifyNone |
无操作的系统通知处理器类。
|
| SystemNotifyUtils |
系统通知工具类。
|
| UserAgentChecker |
Title:
Description: 判断HTTP请求是否来自手机
Copyright: Copyright (c) 2005 Huang YingNing
Company: hynnet.com
|
| Util |
Title: 常用工具函数公用模块
Description: 常用通用函数 Copyright: Copyright (c) 2001 Company: HYNNET.COM |
| XMLProperties |
以属性操作的方式操作XML文件的类。
|
| XMLProperties.NodeChangeHandler |
节点修改动态代理处理类。
|
| XMLProperties.PropertiesNodeList |
属性节点列表类。
|
| XMLUtil |
Title: 常用工具函数公用模块
Description: 常用通用函数 Copyright: Copyright (c) 2000 Company: HYNNET.COM |
| ZipMaker |
| 枚举 | 说明 |
|---|---|
| BrowserInfo.ARCHITECTURE |
架构枚举类型。
|
| BrowserInfo.BROWSER_TYPE |
浏览器类型枚举类型。
|
| BrowserInfo.DEVTYPE | |
| BrowserInfo.NETTYPE |
网络类型枚举类型。
|
| BrowserInfo.OSTYPE |
操作系统类型枚举类型。
|
| BrowserInfo.SECURITY_LEVEL | |
| Encryption |
加密处理类。
|
| FixTimeType |
调整包含整体时间的操作枚举类型。
|
| 异常错误 | 说明 |
|---|---|
| HttpClientUtils.HttpClientException |
Http客户端异常类。
|
Copyright © 2001-2014 hynnet.com