Java 验证码 Cage
- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://akiraly.github.io/cage/
- 软件文档: http://akiraly.github.io/cage/quickstart.html
软件介绍
Cage 是一个 Java 实现的验证码图片生成库,快速、小型和简单。
示例代码:
public class QuickStart {
public static void main(String[] args) throws IOException {
Cage cage = new GCage();
OutputStream os = new FileOutputStream("captcha.jpg", false);
try {
cage.draw(cage.getTokenGenerator().next(), os);
} finally {
os.close();
}
}
}
Maven:
<dependency> <groupId>com.github.cage</groupId> <artifactId>cage</artifactId> <version>1.0</version> </dependency>
Using Google App Engine
Charles Severance / O'Reilly Media / 2009-5-23 / USD 29.99
With this book, you can build exciting, scalable web applications quickly and confidently, using Google App Engine - even if you have little or no experience in programming or web development. App Eng......一起来看看 《Using Google App Engine》 这本书的介绍吧!
