달력

12025  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
반응형


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace WindowsFormsApp5
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            // 한글은 저장시 utf-8은 잘되는데 나머진은 안되는 이유는 모르겠네요 ㅠㅠ
            string str = File.ReadAllText(@"lorem.txt"); // 한번에 텍스트를 다 읽어드림
            // File.ReadAllLines 배열단위로 넘겨줌
            this.textBox1.Text += str;
        }        
    }
}
 
cs

실행


'프로그래밍 > C#' 카테고리의 다른 글

[C#]ImageResize  (0) 2018.07.24
[C#]Image에 흰색 지우기  (0) 2018.07.22
[C#]동그란 이미지 만들기  (0) 2018.07.01
[C#] 유닉스시간 <> 윈도우시간 변환 함수  (0) 2018.06.27
[C#] 텍스트를 픽쳐박스로...  (0) 2018.06.23
Posted by 유령회사
|