解决RandomAccessFile写入文件乱码的办法

解决RandomAccessFile写入文件乱码的办法
try   {                       RandomAccessFile out = new  RandomAccessFile(file, " rw " );             
out.seek(out.length());
// 将指针移动到文件末尾
out.writeBytes( " \r\n " );
mess 
=   " 写入文件 " ;
byte  buffer[]  =   new   byte [ 1024 ];
buffer 
=  mess.getBytes();
out.write(buffer); 
out.close();
// 关闭文件流 
}
  catch  (IOException e)  {
  e.printStackTrace();
}

你可能感兴趣的:(解决RandomAccessFile写入文件乱码的办法)