我的程序如下,其中输出的汉字为乱码,请问大虾如何解决?
public static void main(String [] s){
    File filename = new File("F:\\suncity.txt");
    String filein="你好!hello!";
    RandomAccessFile mm = null;
    try {
      mm = new RandomAccessFile(filename,"rw");
      mm.writeBytes(filein);
    } 
    catch (IOException e1) {
      e1.printStackTrace();
    } 
    finally{
      if(mm!=null){
      try {
        mm.close();
      } 
      catch (IOException e2) {
        e2.printStackTrace();
      }
      }
    }
  }