从屏幕中输入字符串的方法

 String str="";
  System.out.println("请输入一个字符串!");
  BufferedReader in = new BufferedReader(new InputStreamReader(System.in) );
  try{
   str=in.readLine();
  }catch(IOException e){
   System.out.println("IOException");
  }

你可能感兴趣的:(从屏幕中输入字符串的方法)