Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有很多巨大的 excel 电子表格(比如 1000 个文件,每个文件有 65000 行),需要导入 mysql。我应该使用 JAVA 并使用 excel 库吗?我应该用 PHP 做吗?你能给我示例代码来将一个简单的 excel 文件导入 mysql 表吗?
谢谢,
阿米尔
如果你使用 Ruby on Rails,你可以这样做:
require 'csv' csv_text = File.read('...') csv = CSV.parse(csv_text, :headers => true) csv.each do |row| row = row.to_hash.with_indifferent_access YourModel.create!(row.to_hash.symbolize_keys) end