###############表结构 #########################
table_name
------------------------------
column type name
------------------------------
column_1 S column_1
column_2 S column_1
------------------------------
###############资源文件 #########################
阿尔巴尼亚 Albania
阿尔及利亚 Algeria
阿富汗 Afghanistan
阿根廷 Argentina
阿闻酋 United Arab Emirates
阿鲁巴 Aruba
阿曼 Oman
……
.
.
……
###############import_country.rb ######################
# -*- coding: utf-8 -*-
require 'rubygems'
require 'activerecord'
class ImportCountry
def self.run_import(lib_table,lib_name)
eval(lib_table).delete_all
path = File.join(RAILS_ROOT , 'doc/' + lib_name)
File.open(path) do |file|
file.each_line do |line|
line = line.chop
arr = []
arr = line.split(' ',2)
@lib_table_info = eval(lib_table).new(:column_1 => (arr[0]),:column_2 => (arr[1]))
@lib_table_info.save
end
end
end
end