Expect工具Expectit.zip
Expectit - 是纯 Java 1.6 实现的 Expect 工具。简单易用和可扩展,全新编写无需依赖第三方库,使用管道和非堵塞 API 基于 NIO 实现。 Maven: <dependency> <groupId>net.sf.expectit</groupId> <artifactId>expectit-core</artifactId> <version>0.3.0</version> </dependency> 使用方法: // the stream from where you read your input data InputStream inputStream = ...; // the stream to where you send commands OutputStream outputStream = ...; Expect expect = new ExpectBuilder() .withInputs(inputStream) .withOutput(outputStream) .build(); expect.sendLine("command").expect(contains("string")); Result result = expect.expect(regexp("(.*)--?--(.*)")); // accessing the matching group String group = result.group(2); 标签:Expectit
- 1
- 2
- 粉丝: 413
- 资源: 1万+
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助