从玉文本文件中读取数字

时间:2014-03-06 05:57:29

标签: agents-jade

我正在开发一个项目,我在本地访问数据(通过Dropbox)。我无法找到从数据文件中获取数字的方法。我可以把整个数据文件,这是相对较小的,但我想整理并只收集小数值,我不关心文本。找到有用的功能及其工作方式一直是一项挑战。好奇,如果这里有人有任何方法指出我正确的方向。寻找可以帮助我的特定功能。如果没有,无论如何,谢谢。

    getnumberstest2() updating;

    vars
file    :   File;
source  :   String;
line    :   String;
test2   :   String;
test3   :   Array;
cust    :   Customer;
i       :   Integer;
pizza   :   DecimalArray;
    begin
create file transient;
file.fileName   :=  "C:\Users\Chris\Dropbox\Capstone\ChrisQ\SAgent1.txt";
file.kind       :=  File.Kind_Unknown_Text;
file.mode       :=  File.Mode_Input;
file.open;
i               := 1;
beginTransaction;
    while not file.endOfFile do
        line    := file.readLine;
        test2   := line[1:end];
        create cust;
        cust.source := test2[i];
        write test2[i];
        write test2;
        test3   := test2[1];   //This is the incompatible types error
    endwhile;
commitTransaction;
    epilog
delete file;
    end;

0 个答案:

没有答案