功能:
· 读文件的内容
用法:
<file act=read[id=书包名] [enc=文件字符编码] method=str name=名称[start=int] [end=int]>相对路径的文件名</file>
· act=read:读操作
· id:返回的书包名(可选,默认为标签名file)
· enc:文件内容的字符编码(可选,默认为平台文件存储编码@{sys:file.enc})
· method:目前的版本仅有str,即字符串
· name:取返回内容的key名,如:@{书包名:名称}
· start:开始位置(可选,从这儿开始读,默认为0,即文件的开头)
· end:结束位置(可选,读到这儿结束,默认为0,即文件的结尾)
例:
<chtml> <fileid=info act=read enc=GBK method=str name=content>_samples/test.txt</file> </chtml>
读_samples/test.txt文件,返回文件中的内容
效果
完整的代码
<html> <title>读文件中的内容</title> <h3>读文件中的内容</h3> <p>@{info:content}</p> <chtml> <file value="这是从测试文件中读出来的内容">_samples/test.txt</file> <file id=info act=read enc=GBK method=str name=content>_samples/test.txt</file> </chtml> </html>
(例子文件:_samples/file_read.html)
实在是Easy,没啥好写的了,动手试试吧
轻开平台资源下载及说明
平台免费下载:http://download.csdn.net/detail/tx18/8381859
最新开发手册下载:http://download.csdn.net/detail/tx18/8411089 开发实例:轻开B2C电子商务网站,免费下载:http://download.csdn.net/detail/tx18/8318585 轻开平台会不定期升级为大家提供更多强大而Easy的功能,请留意最新的开发手册
时间: 2024-10-12 04:10:55