system.in.read()方法的作用是从键盘读出一个字符,然后返回它的Unicode码。
比如以下程序
----TestIn.java -------
* @(#)TestIn.java 2007-11-22
*/
package cn.com.robert.baidu;
import java.io.IOException;
/**
* @author R
*/
public class TestIn {
/**
* @param args
*/
public static void main(String[] args) {
try {
int i=System.in.read();
System.out.println(i);
} catch (IOException e) {
e.printStackTrace();
}
}
}
-----end of TestIn.java ------
这里输入1,这返回结果是49
输入A,返回结果是65
至于第二问,不清楚为什么要用read()方法来做啊,用InputStreamReader不是蛮好的么
代码如下:
for(int j = 0; j < 5; j++) {
System.out.println("INPUT:");
char c = 0;
try {
c = (char) System.in.read();
} catch(IOException e){
}
if( c == '1') {
System.out.println("OK!");
}
}
代码如下:
for(int j = 0; j < 5; j++) {
System.out.println("INPUT:");
char c = 0;
try {
c = (char) System.in.read();
} catch(IOException e){
}
if( c == '1') {
System.out.println("OK!");
}
}
import java.io.*;
class MyJava2
{
public static void main(String args[])
{
char c=' ';
try{
c=(char)System.in.read();
}catch(IOException e){};
System.out.println(c);
}
}
输入一个字符的例子