如何用vbscript和ASP为会计软件制作ascii文件
我需要一个 ascii 文件,其中有几行用于会计。
在每一行中,我都会有文本和数字,例如每列数据具有特定长度的数字和空格 第一列长度为 3 个字符 第二个是 5 第三个是 10 等等...
然后我需要行尾以 CR + LF 结尾
我如何从经典的 asp 和 vbscript 中创建一个 ascii 文件?
i need to have an ascii file that have several lines in it for accounting.
in everyline i will have the text and numbers for example numbers and spaces with specific length for every column of data
first column is 3 char length
second is 5
third is 10 and etc...
then i need the end of the line to end with CR + LF
how do i do an ascii file from classic asp and vbscript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用 FSO (FileSystemObject) 来使用 VBScript 处理文件。此 MSDN 页面,使用文件 ,向您展示如何创建和写入文件。
这是一个 页面,其中包含在 ASP 页面中使用 VBScript 创建文本文件的示例。
You use FSO (FileSystemObject) to work with files in VBScript. This MSDN Page, Working with Files, shows you how to create and write to files.
Here's a page that has a sample that uses VBScript in an ASP page to create a text file.
我猜,您需要像管理数据库一样管理文本文件。如果我是对的,您可以使用 文本文件驱动程序。
您需要一个 schema.ini< /a> 用于数据构造配置的文件和现有文本文件 (myfile.csv)。
schema.ini
myfile.csv (也许不确定,但上述配置每行有三列。)
ASP 方面要做的事情也像经典的数据库操作一样。
My guess, you need to manage a text file like a database. If I'm right, you can do it using Text File Driver.
You need a schema.ini file for the data construct configuration and an existing text file (myfile.csv).
schema.ini
myfile.csv (maybe not certain but there are three columns per line with the above configuration.)
Things to do side of ASP are like classical database operations also.