一起学习网 一起学习网


Ruby进行文件信息输出实例代码

网络编程 Ruby进行文件信息输出实例代码 06-22
演示代码:
[code]
#!/usr/bin/env ruby
COUNT = 10
require 'benchmark'
$account_chars = ('A'..'Z').to_a.delete_if {|c| c =~ /[AEIOUY]/ }
#$password_chars = ('0'..'9').to_a
$password_chars = Array.new
$password_chars[0..9] = ('0'..'9').to_a
$password_chars[10..36] = ('A'..'Z').to_a
def account_char
$account_chars[rand($account_chars.length)]
end
def password_char
$password_chars[rand($password_chars.length)]
end
def account_chars
account_chars = []
6.times {|c| account_chars << account_char }
account_chars
end
def password
begin
begin
password = ''
password << password_char
end while password == '0'
4.times { password << password_char }
end while password =~ /^(.)1111$/
password
end
accounts = {}
lines = []
puts Benchmark::CAPTION
puts Benchmark.measure {
COUNT.times do
i = 0
account_chars.inject(accounts) do |a, c|
i += 1
i == 6 ? a[c] = password : a[c] ||= {}
end
end
}
puts Benchmark.measure {
accounts.each do |char, chars|
account = [char]
chars.each do |char, chars|
account << char
chars.each do |char, chars|
account << char
chars.each do |char, chars|
account << char
chars.each do |char, chars|
account << char
chars.each do |char, password|
account << char
lines << "#{account.join}t#{password}rn"
account.pop
end
account.pop
end
account.pop
end
account.pop
end
account.pop
end
end
}
puts Benchmark.measure {
open 'account.txt', 'wb' do |f|
f.print lines.delete_at(rand(lines.length)) until lines.empty?
end
}
运行后输出到: account.txt文件中。
输出信息格式如下:
数据是随机的,所以每次的记录都会不同。
SZQGMC XC6KP
HLVGTZ HCU30
KTSNNF LSNVS
KWMHRQ 3SM07
BTTZCZ DYMUH
DMKPVN GMJHL
KCFKDR X8X8V
VMMJHB X1D65
SRCPGZ T2IP6
WLRMBT 7YA2Y

采用UTF-8解决Ruby on Rails程序的中问题
1.将.rb文件和.rhtml文件都保存为utf-8格式;2.在/app/Controller/application.rb中增加如下代码:ruby代码before_filter:set_charsetdefset_charsetheaders["Content-Type"]="text/html;char

rails "No route matches" 错误的解决方法
有时候rails会出现:"Noroutematches"错误,可以利用如下方法解决;找到config/routes.rb文件,打开编辑,找到如下行:#Seehowallyourrouteslayoutwith"rakeroutes"在这行下面添加

rails 连接mysql的问题解决
找不到指定的模块。-c:/ruby/lib/ruby/gems/1.8/gems/mysql-2.7.3-x86-mswin32/ext/mysql.so实际上是找不到连接所需的dll文件:libmySQL.dll在mysql安装目录下的bin目录下将此文


编辑:一起学习网

标签:文件,找不到,代码,错误,格式