博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 字符终端上获取输入三种方式
阅读量:5290 次
发布时间:2019-06-14

本文共 1416 字,大约阅读时间需要 4 分钟。

http://blog.csdn.net/hongweigg/article/details/14448731

在Java 字符终端上获取输入有三种方式:

1、java.lang.System.in (目前JDK版本均支持)

2、java.util.Scanner (JDK版本>=1.5)

3、java.io.Console(JDK版本>=1.6),特色:能不回显密码字符

 

package com.srie.chapter01;import java.io.BufferedReader;import java.io.Console;import java.io.IOException;import java.io.InputStreamReader;import java.util.Scanner;public class TestCalc {    public static void main(String[] args) throws Exception {                readBySystem();        readByScanner();        readByConsole();    }    private static void readByConsole() {        System.out.println("read by console");        Console console = System.console();        if(console == null){            System.out.println("console is null!");        }else{            String readLine = console.readLine();            System.out.println(readLine);        }    }    private static void readBySystem() throws IOException {        System.out.println("read by system.in");        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));        String readLine = bufferedReader.readLine();        System.out.println(readLine);    }    private static void readByScanner() {        System.out.println("read by scanner:");        Scanner scanner = new Scanner(System.in);        String nextLine = scanner.nextLine();        System.out.println(nextLine);    }}

 

转载于:https://www.cnblogs.com/stono/p/4332641.html

你可能感兴趣的文章
Swift中字符串转化为Class的方法
查看>>
使用RockMongo管理MongoDB
查看>>
20140213-想念是while里的死循环
查看>>
C语言运算符及其优先级汇总表口诀
查看>>
深入理解HTTP Session
查看>>
【转载】uclibc和glibc的差别
查看>>
搭建《深入Linux内核架构》的Linux环境
查看>>
Yuchuan_Linux_C 编程之三 静态库的制作和使用
查看>>
C#的最实用的的字符串加密解密方法大全
查看>>
前台通过window.localStorage存储用户名
查看>>
基于Flutter实现的仿开眼视频App
查看>>
析构器
查看>>
驱动的本质
查看>>
Swift的高级分享 - Swift中的逻辑控制器
查看>>
https通讯流程
查看>>
Swagger简单介绍
查看>>
C# 连接SQLServer数据库自动生成model类代码
查看>>
关于数据库分布式架构的一些想法。
查看>>
BigDecimal
查看>>
Python语法基础之DataFrame
查看>>