当前位置: 代码迷 >> J2SE >> 这个代码如何改就正确了
  详细解决方案

这个代码如何改就正确了

热度:24   发布时间:2016-04-24 00:45:37.0
这个代码怎么改就正确了?
随机文件读写出:RandomAccessFile类


Java code
import java.io.*;public class ReadFileRW{    public static void main(String []args)    {        StringBuffer sb=new StringBuffer();        char ch;        try        {            while((ch=(char)System.in.read())!="\n")            {                sb.append(ch);            }            RandomAccessFile raf=new RandomAccessFile("D:\\HelloWorld\\User.txt","rw");            raf.seek(raf.length());            raf.writeBytes(sb.toString());            raf.close();        }catch(Exception e)        {            e.printStackTrace();        }    }}


------解决方案--------------------
while ((ch = (char) System.in.read()) != '\n')
  相关解决方案