除了异常处理之外,我使用以下内容在Java中输入一行文本:
BufferedReader strin = new BufferedReader(new InputStreamReader(System.in));
String txt = null;
txt = strin.readLine();
但是,我希望能够编辑现有的字符串,这样如果将txt初始化为“hello”而不是null,那么readLine()将在缓冲区中包含“hello”文本供我编辑。
我看不出怎么做。任何帮助将不胜感激。