티스토리 뷰
728x90
반응형
http://www.gisdeveloper.co.kr/?p=5566
<!DOCTYPE html>
<html>
<head>
<title>HTML</title>
<script>
function openTextFile() {
var input = document.createElement("input");
input.type = "file";
input.accept = "text/plain";
input.onchange = function (event) {
processFile(event.target.files\[0\]);
};
input.click();
}
function processFile(file) {
var reader = new FileReader();
reader.onload = function () {
output.innerText = reader.result;
};
reader.readAsText(file, /\* optional \*/ "euc-kr");
}
</script>
</head>
<body>
<h1>HTML</h1>
<p>
<button onclick="openTextFile()">Open</button>
<div id='output'>...</div>
</p>
</body>
</html>
728x90
반응형
'IT' 카테고리의 다른 글
Driver / LG OnScreen Control / 엘지 온스크린 컨트롤 / 마우스로 모니터 조정 (0) | 2019.11.02 |
---|---|
Program / Mouse without borders / 여러 컴퓨터에서 마우스 키보드 쓰는 유틸리티 (0) | 2019.10.08 |
CrystalDiskMark / 크리스탈디스크마크 / HDD, SSD 속도확인 (0) | 2019.10.07 |
SpaceSniffer / 스페이스스니퍼 하드, SSD 용량 확인 (0) | 2017.02.17 |
(구) CrystalDiskMark / 크리스탈디스크마크 HDD, SSD 속도확인 (0) | 2017.02.05 |
AveIcon / ico-png변환 (0) | 2017.01.30 |
Asciipic / 아스키픽처 사진을 글자로 표현! (0) | 2017.01.30 |