日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢(xún)
選擇下列產(chǎn)品馬上在線(xiàn)溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問(wèn)題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷(xiāo)解決方案
深度解析Ruby文件操作

Ruby文件操作是一個(gè)比較常用的一個(gè)編程方法。在接下來(lái)的這篇文章中我們將會(huì)為大家詳細(xì)介紹有關(guān)Ruby文件操作的一些實(shí)現(xiàn)技巧。#t#

創(chuàng)新互聯(lián)-專(zhuān)業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性?xún)r(jià)比伊美網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式伊美網(wǎng)站制作公司更省心,省錢(qián),快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋伊美地區(qū)。費(fèi)用合理售后完善,十余年實(shí)體公司更值得信賴(lài)。

Ruby文件操作代碼示例如下:

#2.rb;在同一級(jí)目錄建立1.txt的文件,輸入一些內(nèi)容

file=File.open("1.txt","r")#file=File.open("F:\\ruby\\rb\\1.txt","r")絕對(duì)路徑下
file.each_line do |line|
puts line
end

# another logic

File.open("1.txt","r") do |file|
while line=file.gets
puts line
end
end

# the third logic ,the code is copied from someone else ...

IO.foreach("1.txt") do |line|
#puts line if line =~/target/
puts line if line !~/target/
end

#count the number of a file ,the bytes and lines

arr=IO.read("1.txt")
bytes=arr.size
puts "the byte size is #{bytes}"
arrl=IO.readlines("1.txt")
lines = arrl.size
puts"the lines number is #{lines}"

#show the file's path

puts File.expand_path("1.txt")

#count chars from a file

file= File.new("1.txt")
w_count = 0
file.each_byte do |byte|
w_count += 1 if byte ==?1

end
puts "#{w_count}"

#create new file and write some words there

file= File.new("2.txt","w")

puts File.exist?("2.txt")#judge the file is exist or not
file.write("hehe\nhahah")

#io.stream operation

require 'stringio'

ios = StringIO.new("abcdef\n ABC \n 12345")
ios.seek(5)
ios.puts("xyz3")
puts ios.tell

puts ios.string.dump

#the result is 10,insert xyz3 at the 5th byte

#another example

require 'stringio'

ios = StringIO.new("abcdef\n ABC \n 12345")
ios.seek(3)
ios.ungetc(?w) #replace the char at index 3

puts "Ptr = #{ios.tell}"
s1 = ios.gets #filte the "\n"
s2 = ios.gets
puts s1
puts s2

希望上面這段代碼示例可以幫助我們熟練掌握Ruby文件操作的一些技巧。


文章標(biāo)題:深度解析Ruby文件操作
本文地址:http://www.dlmjj.cn/article/cohpipc.html