我不知道Go的语法。谁能帮助我将以下Java代码转换为Google的go语言。
import java.io.*;
class FileWrite
{
public static void main(String args[])
{
try {
// Create file
FileWriter fstream = new FileWriter("out.txt");
BufferedWriter out = new BufferedWriter(fstream);
out.write("Hello Java");
// Close the output stream
out.close();
} catch (Exception e){ //Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
}
此Java代码创建一个名为out.txt的文件,并在该文件上写入一个字符串(Hello Java)。
慕哥6287543
相关分类