[サンプルコード]
■CSVDocument Classを利用する場合
CSVDocument csvsave;
Function OnTouch(e) {
Form1.csvsave.get("http://bizdemo/cust.csv");
var fs = new FileSystem;
var f = fs.Open("cust.csv",FileSystem.OPEN_WRITE);
Form1.csvsave.save( f ); /* 書き込み */
f.Close();
var rt = new Runtime;
rt.ShellOpen( f.FileName );
}
■HttpSessionクラスを利用する場合
Function OnTouch(e) {
var session = findHTTPSession("http://localhost");
var res = session.get("/a/app.xls");
var fs = new FileSystem;
var f = fs.Open("p.xls",FileSystem.OPEN_WRITE);
var sss = res.read();
f.write(sss); /* 書き込み */
f.Close();
var rt = new Runtime;
rt.ShellOpen( f.FileName );
}
|