W

로컬 텍스트 엑셀 파일 읽기/쓰기

· 16년 전 · 5662

익스플로우의 보안에 허용만 가능하면 자바스크립트 상에서도 읽기/쓰기가 가능하다.

 

우선 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;
}

 

간단한 파일 읽기의 경우 상당히 유용할 수 있겠다..

 
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
15년 전 조회 2,167
15년 전 조회 972
15년 전 조회 1,440
15년 전 조회 1,418
15년 전 조회 3,196
15년 전 조회 3,565
15년 전 조회 2,245
15년 전 조회 1,706
15년 전 조회 2,317
15년 전 조회 1,805
15년 전 조회 1,431
15년 전 조회 4,123
15년 전 조회 1,784
15년 전 조회 1,852
15년 전 조회 3,132
15년 전 조회 1,818
15년 전 조회 4,517
15년 전 조회 2,720
15년 전 조회 3,501
15년 전 조회 2,127
15년 전 조회 2,362
15년 전 조회 1,652
15년 전 조회 4,706
15년 전 조회 4,346
16년 전 조회 4,151
16년 전 조회 5,550
16년 전 조회 3,773
16년 전 조회 2,144
16년 전 조회 2,094
16년 전 조회 2,240
16년 전 조회 1,933
16년 전 조회 4,366
16년 전 조회 3,272
16년 전 조회 2,437
16년 전 조회 2,025
16년 전 조회 2,221
16년 전 조회 2,725
16년 전 조회 1,801
16년 전 조회 2,734
16년 전 조회 2,057
16년 전 조회 2,197
16년 전 조회 1,834
16년 전 조회 2,535
16년 전 조회 1,851
16년 전 조회 2,277
16년 전 조회 2,429
16년 전 조회 1,526
16년 전 조회 1,593
16년 전 조회 2,244
16년 전 조회 5,663
16년 전 조회 1,962
16년 전 조회 2,486
16년 전 조회 2,679
16년 전 조회 1,841
16년 전 조회 1,619
16년 전 조회 2,552
16년 전 조회 5,266
16년 전 조회 2,541
16년 전 조회 3,202
16년 전 조회 2,068
16년 전 조회 3,939
16년 전 조회 4,772
16년 전 조회 3,410
16년 전 조회 2,642
16년 전 조회 2,754
16년 전 조회 2,987
16년 전 조회 2,502
16년 전 조회 5,869
16년 전 조회 3,689
16년 전 조회 1,677
16년 전 조회 2,021
16년 전 조회 5,380
16년 전 조회 2,646
16년 전 조회 3,712
16년 전 조회 3,000
16년 전 조회 1,867
16년 전 조회 5,696
16년 전 조회 2,808
16년 전 조회 6,285
16년 전 조회 2,261
16년 전 조회 4,315
16년 전 조회 3,332
16년 전 조회 2,525
16년 전 조회 2,532
16년 전 조회 4,690
16년 전 조회 3,598
16년 전 조회 3,131
16년 전 조회 3,274
16년 전 조회 2,403
16년 전 조회 2,054
16년 전 조회 1,986
16년 전 조회 1,692
16년 전 조회 2,001
16년 전 조회 2,201
16년 전 조회 1,899
16년 전 조회 5,141
16년 전 조회 4,152
16년 전 조회 2,082
16년 전 조회 1,853
16년 전 조회 2,578