cách dùng thư viện IO trong lua để làm việc với file ?
Hello & Welcome to our community. Is this your first visit? Đăng Ký
Follow us on
Follow us on Facebook Follow us on Twitter Linked In Flickr Watch us on YouTube My Space Blogger
 
Kết quả 1 đến 3 của 3
  1. #1
    Bộ Kinh Vân nguyenquocbo's Avatar
    Ngày tham gia
    Jun 2006
    Bài viết
    94
    Thanks
    8
    Thanked 8 Times in 5 Posts

    cách dùng thư viện IO trong lua để làm việc với file ?

    Dear all
    Dưới đây là tut hướng dẫn làm việc với file thông qua các hàm của thư viện IO
    Áp dụng cách này để làm việc với file (đọc,ghi) trong script cho JX thì mình gặp lỗi
    Gameserver báo không hiểu các hàm của thư việc IO
    Chuyển qua dùng thông thường bằng hàm openfile thì OK (cái này không bàn tới)
    Pro nào biết các dùng thư viện IO lập trinh script chỉ mình với
    Làm cách nào dùng thư viện IO này để có thể đọc ghi file ??????

    Io Library Tutorial

    lua-users home
    wiki

    Input and Output Facilities

    The I/O library provides two different styles for file manipulation. The first one uses implicit file descriptors, that is, there are operations to set a default input file and a default output file, and all input/output operations are over those default files. The second style uses explicit file descriptors.

    When using implicit file descriptors, all operations are supplied by table io. When using explicit file descriptors, the operation io.open returns a file descriptor and then all operations are supplied as methods by the file descriptor.

    The table io also provides three predefined file descriptors with their usual meanings from C: io.stdin, io.stdout, and io.stderr.

    A file descriptor is a userdata containing the file stream (FILE*), with a distinctive metatable created by the I/O library.

    Unless otherwise stated, all I/O functions return nil on failure (plus an error message as a second result) and some value different from nil on success.

    file = io.open (filename [, mode])

    This function opens a file, in the mode specified in the string mode. It returns a new file descriptor, or, in case of errors, nil plus an error message.

    The mode string can be any of the following:

    * "r" read mode (the default);
    * "w" write mode;
    * "a" append mode;
    * "r+" update mode, all previous data is preserved;
    * "w+" update mode, all previous data is erased;
    * "a+" append update mode, previous data is preserved, writing is only allowed at the end of file.

    The mode string may also have a b at the end, which is needed in some systems to open the file in binary mode. This string is exactly what is used in the standard C function fopen.

    io.close ([file])

    Equivalent to file:close. Without a file, closes the default output file.

    io.flush ()

    Equivalent to file:flush over the default output file.

    io.input ([file])

    When called with a file name, it opens the named file (in text mode), and uses it as the default input descriptor. When called with a file descriptor, it simply sets that file descriptor as the default input file. When called without parameters, it returns the current default input file descriptor.

    In case of errors this function raises the error, instead of returning an error code.

    io.lines ([filename])

    Opens the given file name in read mode and returns an iterator function that, each time it is called, returns a new line from the file. Therefore, the construction

    for line in io.lines(filename) do ... end

    will iterate over all lines of the file. When the iterator function detects the end of file, it closes the file and returns nil (to finish the loop).

    The call io.lines() (without a file name) is equivalent to io.input():lines(), that is, it iterates over the lines of the default input file.

    io.output ([file])

    Similar to io.input, but operates over the default output file.

    io.read (format1, ...)

    Equivalent to io.input():read.

    io.tmpfile ()

    Returns a descriptor for a temporary file. This file is open in update mode and it is automatically removed when the program ends.

    io.type (obj)

    Checks whether obj is a valid file descriptor. Returns the string "file" if obj is an open file descriptor, "closed file" if obj is a closed file descriptor, and nil if obj is not a file descriptor.

    io.write (value1, ...)

    Equivalent to io.output():write.

    f:close ()

    Closes file f.

    f:flush ()

    Saves any written data to file f.

    f:lines ()

    Returns an iterator function that, each time it is called, returns a new line from file f. Therefore, the construction

    for line in f:lines() do ... end

    will iterate over all lines of file f. (Unlike io.lines, this function does not close the file when the loop ends.)

    f:read (format1, ...)

    Reads the file f, according to the given formats, which specify what to read. For each format, the function returns a string (or a number) with the characters read, or nil if it cannot read data with the specified format. When called without formats, it uses a default format that reads the entire next line (see below).

    The available formats are

    * "*n" reads a number; this is the only format that returns a number instead of a string.
    * "*a" reads the whole file, starting at the current position. On end of file, it returns the empty string.
    * "*l" reads the next line (skipping the end of line), returning nil on end of file. This is the default format.
    * number reads a string with up to that number of characters, returning nil on end of file. If number is zero, it reads nothing and returns an empty string, or nil on end of file.

    f:seek ([whence] [, offset])

    Sets and returns the index position for file f, measured from the beginning of the file, to the position given by offset plus a base specified by the string whence, as follows:

    * "set" base is position 0 (beginning of the file);
    * "cur" base is current position;
    * "end" base is end of the file;

    In case of success, function seek returns the final file position, measured in bytes from the beginning of the file. If this function fails, it returns nil, plus a string describing the error.

    The default value for whence is "cur", and for offset is 0. Therefore, the call file:seek() returns the current file position, without changing it; the call file:seek("set") sets the position to the beginning of the file (and returns 0); and the call file:seek("end") sets the position to the end of the file, and returns its size.

    f:write (value1, ...)

    Writes the value of each of its arguments to file f. The arguments must be strings or numbers. To write other values, use tostring or string.format before write.
    Khách viếng thăm hãy cùng nguyenquocbo xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  2. The Following 2 Users Say Thank You to nguyenquocbo For This Useful Post:

    nguyentrunghbl (27-12-10), thaihoa91 (27-12-10)

  3. #2
    Thành Viên ThanhVipLn's Avatar
    Ngày tham gia
    Mar 2010
    Bài viết
    598
    Thanks
    1
    Thanked 71 Times in 43 Posts

    Ðề: cách dùng thư viện IO trong lua để làm việc với file ?

    Cái Gì Thế Này
    Co1 2 Người Thank. Chằng Bik CÁI gÌ nỮA
    Khách viếng thăm hãy cùng ThanhVipLn xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  4. #3
    Thành Viên Tâm Huyết KingMax's Avatar
    Ngày tham gia
    Dec 2010
    Bài viết
    642
    Thanks
    143
    Thanked 321 Times in 125 Posts

    Ðề: cách dùng thư viện IO trong lua để làm việc với file ?

    chưa chuyên sâu lắm vụ này, nhưng mà cái w+ thì có xài thì phải
    Comeback JXP

  5. Các thành viên gởi lời cảm ơn đến KingMax vì bài viết này !

    assaa (12-12-12)

 

 

Các Chủ đề tương tự

  1. Hỏi cách bung file settings trong file pak ở client của VNG
    Bởi hanamnet1 trong diễn đàn Hỏi Đáp/ Yêu Cầu
    Trả lời: 5
    Bài viết cuối: 01-09-15, 09:01 PM
  2. Cấu trúc của file acv trong Audition
    Bởi huuduyen_05 trong diễn đàn Releases
    Trả lời: 1
    Bài viết cuối: 16-04-08, 07:14 PM

Quyền viết bài

  • Bạn Không thể gửi Chủ đề mới
  • Bạn Không thể Gửi trả lời
  • Bạn Không thể Gửi file đính kèm
  • Bạn Không thể Sửa bài viết của mình
  •  
Múi giờ GMT +7. Bây giờ là 10:01 PM.
vBulletin®, Copyright ©2000-2011, Jelsoft Enterprises Ltd.
CLBGamesVN không chịu trách nhiệm về Luật Bản Quyền của các tài liệu, bài viết v.v...được đăng tải trên diễn đàn này.
Diễn đàn phát triển dưới sự đóng góp của tất cả thành viên. BQT chỉ là những người thành lập ra sân chơi, quản lý và duy trì về mặt kỹ thuật, nội dung khi hợp lệ.