Expect工具Expectit.zip

时间:2022-08-08 03:19:31
【文件属性】:

文件名称:Expect工具Expectit.zip

文件大小:156KB

文件格式:ZIP

更新时间:2022-08-08 03:19:31

开源项目

Expectit - 是纯 Java 1.6 实现的 Expect 工具。简单易用和可扩展,全新编写无需依赖第三方库,使用管道和非堵塞 API 基于 NIO 实现。 Maven:     net.sf.expectit     expectit-core     0.3.0 使用方法: // 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


网友评论