Client.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company;
  2. import java.io.BufferedReader;
  3. import java.io.IOException;
  4. import java.io.InputStreamReader;
  5. /**
  6.  * @author cbf4Life cbf4life@126.com
  7.  * I'm glad to share my knowledge with you all.
  8.  */
  9. public class Client {
  10. public static void main(String[] args) throws IOException {
  11. Invoker invoker = new Invoker();
  12. while(true){
  13. //unix写的默认提示符号
  14. System.out.print("#");
  15. //捕获输出
  16. String input = (new BufferedReader(new InputStreamReader(System.in))).readLine();
  17. //输入quit或exit则退出
  18. if(input.equals("quit") || input.equals("exit")){
  19. return;
  20. }
  21. System.out.println(invoker.exec(input));
  22. }
  23. }
  24. }