首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Java > java的一个壳的实现

java的一个壳的实现

  • 资源大小:61.68 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: java shell

资 源 简 介

Jshell is a simple shell implementation in Java. The project contains some default commands (ie: cat, grep ...) Il allows to pipe the out of a command to an other (like in a real shell!) Configuration of the shell By default no command are present in the shell, you have to add them and start the shell like in the example below : ``` import org.jshell.impl.Cat; import org.jshell.impl.Exit; import org.jshell.impl.Grep; public class Test { public static void main(String[] args) { try { Shell shell = new Shell(); shell.registerCommand(new Grep()); shell.registerCommand(new Cat()); shell.registerCommand(new Exit()); shell.start(); } catch(Exception ex) { ex.printStackTrace(); } } } ```

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
0.236714s