익스플로우의 보안에 허용만 가능하면 자바스크립트 상에서도 읽기/쓰기가 가능하다.
우선 text파일 읽고 쓰는 예제이다.(C:\\book1.txt를 읽고 씀)
=====================================================================================================================
<html>
<head>
<title>file save/load</title>
<script type="text/javascript">
var fso=new ActiveXObject("Scripting.FileSystemObject");
var filename="C:\\book1.txt";
function savefile() {
if (!fso.FileExists(filename)) {
fso.CreateTextFile(filename,true);
}
var f=fso.OpenTextFile(filename,2,true);
f.Write(myarea.innerHTML);
f.Close();
}
function loadfile() {
if (!fso.FileExists(filename)) {
fso.CreateTextFile(filename,true);
}
var f=fso.OpenTextFile(filename,1);
r=f.ReadAll();
f.Close();
myarea.innerHTML=r;
}
//function window.onload() {
// loadfile(filename);
//}
</script>
</head>
<body>
<table>
<tr>
<td>
<div id=myarea contenteditable=true style="width:320;height:240;border:solid 2 inset;overflow:scroll;background-color:silver;"></div>
<br><input type=button value=load onclick=loadfile()><input type=button value=save onclick=savefile()>
</td>
</tr>
</table>
</form>
</body>
</html>
======================================Excel 파일 열고 쓰기 =================================================
- 쓰기 -
<script type="text/javascript">
// Declare the variables
var Excel, Book;
// Create the Excel application object.
Excel = new ActiveXObject("Excel.Application");
// Make Excel visible.
Excel.Visible = true;
// Create a new work book.
Book = Excel.Workbooks.Add()
// Place some text in the first cell of the sheet.
Book.ActiveSheet.Cells(1,1).Value = "This is column A, row 1";
// Save the sheet.
Book.SaveAs("C:\\book1.xls");
// Close Excel with the Quit method on the Application object.
Excel.Application.Quit();
</script>
- 열기 -
function StartExcel() {
var oExcel;
var oWBook;
oExcel = new ActiveXObject("Excel.Application");
oExcel.Visible = true;
oExcel.workbooks.open("C:/test.xls");
oExcel.Quit();
oExcel = null;
}
간단한 파일 읽기의 경우 상당히 유용할 수 있겠다..
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 453 | ||
| 7929 | 9년 전 | 388 | ||
| 7928 | 9년 전 | 465 | ||
| 7927 | 9년 전 | 379 | ||
| 7926 | 9년 전 | 688 | ||
| 7925 | 9년 전 | 404 | ||
| 7924 | 9년 전 | 386 | ||
| 7923 | 9년 전 | 380 | ||
| 7922 | 9년 전 | 414 | ||
| 7921 | 9년 전 | 432 | ||
| 7920 | 9년 전 | 343 | ||
| 7919 | 9년 전 | 352 | ||
| 7918 | 9년 전 | 507 | ||
| 7917 | 9년 전 | 358 | ||
| 7916 | 9년 전 | 446 | ||
| 7915 | 9년 전 | 454 | ||
| 7914 | 9년 전 | 467 | ||
| 7913 | 9년 전 | 633 | ||
| 7912 | 9년 전 | 466 | ||
| 7911 | 9년 전 | 398 | ||
| 7910 | 9년 전 | 445 | ||
| 7909 | 9년 전 | 550 | ||
| 7908 | 9년 전 | 488 | ||
| 7907 | 9년 전 | 429 | ||
| 7906 | 9년 전 | 444 | ||
| 7905 | 9년 전 | 410 | ||
| 7904 | 9년 전 | 403 | ||
| 7903 | 9년 전 | 400 | ||
| 7902 | 9년 전 | 589 | ||
| 7901 |
|
9년 전 | 767 | |
| 7900 | 9년 전 | 648 | ||
| 7899 | 9년 전 | 431 | ||
| 7898 | 9년 전 | 428 | ||
| 7897 | 9년 전 | 388 | ||
| 7896 | 9년 전 | 400 | ||
| 7895 | 9년 전 | 518 | ||
| 7894 | 9년 전 | 431 | ||
| 7893 | 9년 전 | 404 | ||
| 7892 | 9년 전 | 444 | ||
| 7891 | 9년 전 | 807 | ||
| 7890 | 9년 전 | 1231 | ||
| 7889 | 9년 전 | 766 | ||
| 7888 |
limsy1987
|
9년 전 | 578 | |
| 7887 | 9년 전 | 607 | ||
| 7886 | 9년 전 | 495 | ||
| 7885 | 9년 전 | 467 | ||
| 7884 | 9년 전 | 458 | ||
| 7883 | 9년 전 | 461 | ||
| 7882 | 9년 전 | 521 | ||
| 7881 | 9년 전 | 495 | ||
| 7880 | 9년 전 | 618 | ||
| 7879 | 9년 전 | 503 | ||
| 7878 | 9년 전 | 1276 | ||
| 7877 | 9년 전 | 808 | ||
| 7876 | 9년 전 | 544 | ||
| 7875 | 9년 전 | 614 | ||
| 7874 |
|
9년 전 | 830 | |
| 7873 | 9년 전 | 550 | ||
| 7872 | 9년 전 | 715 | ||
| 7871 | 9년 전 | 530 | ||
| 7870 | 9년 전 | 648 | ||
| 7869 | 9년 전 | 467 | ||
| 7868 | 9년 전 | 504 | ||
| 7867 | 9년 전 | 501 | ||
| 7866 | 9년 전 | 558 | ||
| 7865 | 9년 전 | 499 | ||
| 7864 | 9년 전 | 561 | ||
| 7863 | 9년 전 | 553 | ||
| 7862 | 9년 전 | 517 | ||
| 7861 | 9년 전 | 688 | ||
| 7860 | 9년 전 | 666 | ||
| 7859 | 9년 전 | 443 | ||
| 7858 | 9년 전 | 746 | ||
| 7857 | 9년 전 | 1136 | ||
| 7856 | 9년 전 | 566 | ||
| 7855 | 9년 전 | 800 | ||
| 7854 | 9년 전 | 753 | ||
| 7853 | 9년 전 | 646 | ||
| 7852 | 9년 전 | 565 | ||
| 7851 | 9년 전 | 557 | ||
| 7850 | 9년 전 | 634 | ||
| 7849 | 9년 전 | 400 | ||
| 7848 | 9년 전 | 468 | ||
| 7847 | 9년 전 | 711 | ||
| 7846 | 9년 전 | 498 | ||
| 7845 | 9년 전 | 467 | ||
| 7844 | 9년 전 | 438 | ||
| 7843 | 9년 전 | 475 | ||
| 7842 | 9년 전 | 457 | ||
| 7841 | 9년 전 | 429 | ||
| 7840 | 9년 전 | 442 | ||
| 7839 | 9년 전 | 485 | ||
| 7838 | 10년 전 | 552 | ||
| 7837 | 10년 전 | 384 | ||
| 7836 | 10년 전 | 442 | ||
| 7835 | 10년 전 | 517 | ||
| 7834 |
|
10년 전 | 1227 | |
| 7833 | 10년 전 | 487 | ||
| 7832 | 10년 전 | 462 | ||
| 7831 | 10년 전 | 623 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기