回复:(king0718)[求助]求教JAVA中单个字符输入问题...
import java.io.*;
public class ReaderChar{
public static void main(String[] args)throws IOException{
char c='';
System.out.print("Enter the chracter!");
c=(char)System.in.read();
System.out.println("the charcter is:"+c);
}