"Go 파일 읽기"의 두 판 사이의 차이

26번째 줄: 26번째 줄:
==같이 보기==
==같이 보기==
* [[Go 파일 쓰기]]
* [[Go 파일 쓰기]]
* [[Go JSON 파일 Unmarshal]]
* [[Go YAML 파일 Unmarshal]]


[[분류: Go 패키지 io/ioutil]]
[[분류: Go 패키지 io/ioutil]]

2023년 1월 19일 (목) 18:44 판

1 개요

Go 파일 읽기
hello world
package main

import (
	"fmt"
	"io/ioutil"
)

func main() {
	fileBytes, err := ioutil.ReadFile("a.txt")
	if err != nil {
		panic(err)
	}
	fmt.Println("fileBytes:", fileBytes)
	str := string(fileBytes)
	fmt.Println("str:", str)
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}