我不知道Go的语法。谁能帮我用谷歌的go语言转换以下java代码。importjava.io.*;classFileWrite{publicstaticvoidmain(Stringargs[]){try{//CreatefileFileWriterfstream=newFileWriter("out.txt");BufferedWriterout=newBufferedWriter(fstream);out.write("HelloJava");//Closetheoutputstreamout.close();}catch(Exceptione){//Catchexceptioni