ruby on rails 使用fasterCSV将csv文件导入到数据库

在ruby on rails中
使用fasterCSV解析csv文件比标准库的csv要快10倍左右
不过的先安装fasterCSV ,使用gem来安装

gem install fastercsv

如果是使用工具aptana开发的话,可以用名叫RubyGems的View窗口安装
这个例子是通过上传一个csv来解析csv文件
view层
index.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>Untitled Document</title>
</head>
<body>
<% form_for :dump, :url=>{:controller=>"customer_information", :action=>"csv_import"}, :html => { :multipart => true } do |f| -%>
<table>
<tr>
<td>
<label for=”dump_file”>
Select a CSV File :
</label>
</td>
<td>
<%= f.file_field :file -%>
</td>
</tr>
<tr>
<td colspan=’2′>
<%= submit_tag 'Submit' -%>
</td>
</tr>
</table>
<% end -%>
</body>
</html>

csv_import

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
OK!!!
</body>
</html>

controller层

class CustomerInformationController < ApplicationController
require 'faster_csv'

def csv_import
n=0
FasterCSV.parse(params[:dump][:file],:headers=>true)do |row|
c=CustomerInformation.new

c.name= row[0]
c.email = row[1]
c.remark = row[2]
if c.save
n=n+1
GC.start if n%50==0
end
flash.now[:message]="CSV Import Successful, #{n} new records added to data base"
end
end
end

这个例子是参考自
关于fasterCSV[url]http://anw.stikipad.com/ocean/show/FasterCSV[/url]
关于CSV[url]http://privacystart.info/index.php?hl=f5&q=uggc%3A%2F%2Ffngvfubaenvyf.jbeqcerff.pbz%2F2007%2F07%2F18%2Fubj-gb-vzcbeg-pfi-svyr-va-envyf%2F[/url]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值