为了账号安全,请及时绑定邮箱和手机立即绑定

从Java到Go的代码转换

从Java到Go的代码转换

Go
不负相思意 2021-04-27 13:13:34
我不知道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)。
查看完整描述

3 回答

?
慕哥6287543

TA贡献1831条经验 获得超10个赞

package main


import (

    "fmt"

    "os"

)


func main() {

    fd, err := os.Create("out.txt")

    if err != nil {

        fmt.Println(os.Stderr, err)

        return

    }

    // defer calls a function at the end of the current function.           

    defer fd.Close()


    fd.WriteString("Hello Gopher!\n")

}

我希望这有帮助。如果不清楚,请指定需要解释的部分。


查看完整回答
反对 回复 2021-05-10
  • 3 回答
  • 0 关注
  • 392 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信