6

私は初心者で、VBA Excel プログラミング ツールを使用しています。Excel ファイルの読み取り、Excel コンテンツの操作は、Filereader や Json 配列などの Web ツールよりも VBA の方がはるかに簡単です。

Json 配列ファイルに次のコンテンツがあります。

[
  ["TWE",6000,4545.5  ],
  ["RW",1000,256.3  ]
]

次の html ファイルから読み取り、値 253.6 のみを表示したいと思います。

手伝って頂けますか。

ここでHtmlファイルリーダーの例

<!DOCTYPE html>
<html>
    <head>
        <script>        
            function handleFileSelect()
            {               
                if (window.File && window.FileReader && window.FileList && window.Blob) {

                } else {
                    alert('The File APIs are not fully supported in this browser.');
                    return;
                }   

                input = document.getElementById('fileinput');
                if (!input) {
                  alert("Um, couldn't find the fileinput element.");
               }
               else if (!input.files) {
                  alert("This browser doesn't seem to support the `files` property of file inputs.");
               }
               else if (!input.files[0]) {
                  alert("Please select a file before clicking 'Load'");               
               }
               else {
                  file = input.files[0];
                  fr = new FileReader();
                  fr.onload = receivedText;
                  fr.readAsText(file);
               }
            }

            function receivedText() {           
               //result = fr.result;
               document.getElementById('editor').appendChild(document.createTextNode(fr.result))
            }           

        </script>
    </head>
    <body>
        <input type="file" id="fileinput"/>
        <input type='button' id='btnLoad' value='Load' onclick='handleFileSelect();'>
        <div id="editor"></div>
    </body>
</html>
4

1 に答える 1

8

fr.readAsText を使用してテキストを文字列に取得する場合は、JSON.parse() を使用できます ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/を参照)。 parse ) を使用して文字列を JSON オブジェクトに変換します。その後、通常の配列のように特定のコンテンツにアクセスできます。

于 2013-07-18T06:31:59.253 に答える