jjzjj

WriteString

全部标签

go - 从 Java 到 Go 的代码转换

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