Java验证码库 iCaptcha
- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/icaptcha/
软件介绍
iCaptcha 是一个 Java 的验证码库,支持国际化和可定制。
示例代码:
//Optional Properties
Properties props = new Properties();
props.put("format", "jpg");
props.put("font", "Helvetica");
props.put("fontsize", "28");
props.put("min-width", "180");
props.put("padding-x", "25");
props.put("padding-y", "25");
OutputStream os = new FileOutputStream("c:/captcha/text.jpg");
FactoryLanguageImpl inst=(FactoryLanguageImpl)Producer.forName("org.smx.captcha.impl.FactoryLanguageImpl");
inst.setLanguageDirectory("C:/captcha/lang");
inst.setLanguage("RU");
inst.setRange(5, 10); //Select words between 5-10 letters
Producer.render(os, inst, props);
Linux程序设计
Neil Matthew、Richard Stones / 陈健、宋健建 / 人民邮电出版社 / 201005 / 99.00元
时至今日,Linux系统已经从一个个人作品发展为可以用于各种关键任务的成熟、高效和稳定的操作系统,因为具备跨平台、开源、支持众多应用软件和网络协议等优点,它得到了各大主流软硬件厂商的支持,也成为广大程序设计人员理想的开发平台。 本书是Linux程序设计领域的经典名著,以简单易懂、内容全面和示例丰富而受到广泛好评。中文版前两版出版后,在国内的Linux爱好者和程序员中也引起了强烈反响,这一热潮......一起来看看 《Linux程序设计》 这本书的介绍吧!
