- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 PHP 应用程序,它有一个超过 10000 行的表,我试图通过我的 ROR 应用程序将其导出到 Excel 工作表中,但是我的请求在服务器上被 PHP 应用程序超时。所以我想知道有什么优雅的方法可以解决这个问题。我想出了两个解决方案。首先是进行批处理(需要阅读,因为我是新手),另一个是我的 php 应用程序将发送一个大的 json 对象,我的 ruby 应用程序将读取该 json 对象,将数据写入 excel 表并发回excel表。所以我想问问有没有更好的方法来处理这个问题?我如何将 json 转换为 excel 我在谷歌上搜索并发现 excel 转换为 json,但反之亦然。有什么建议吗?
最佳答案
我有一些时间,所以我在 ruby1.9 中构建了一个 json 到 excel csv 转换器:
它从一个文件中读取并将其写入另一个文件。
json2excel.rb
def json2excel(fromFile, toFile)
pos = 0
while true
c = fromFile.read(1);pos += 1
if c == ' ' or c == "\n" or c == "\r"
# whitespace
elsif c == '['
# first bracket begins!
attributes = []
while true
c = fromFile.read(1);pos += 1
if c == '{'
# now an object starts
object = Hash.new
while true
puts "!!!"
c = fromFile.read(1);pos += 1
if c == '"'
# new attribute starts
name = ""
while true
c = fromFile.read(1);pos += 1
if c == '"'
break
else
name += c
end
end
attributes << name unless attributes.include? name
# scan for :
while true
c = fromFile.read(1);pos += 1
if c == ':'
break
elsif c == ' ' or c == '\n' or c == '\r' # whitespace is ok
else raise "4malformed json for excel conversion! char: #{c.inspect} position: #{pos}"
end
end
# scan for staring value
while true
c = fromFile.read(1);pos += 1
if c == '"'
# string follows
value = ""
value << c
while true
c = fromFile.read(1);pos += 1
value << c
if c == '"'
break
end
end
c = fromFile.read(1);pos += 1
break
elsif c == ' ' or c == '\n' or c == '\r' # whitespace is ok
elsif "1234567890".include? c
# number follows
value = ""
value << c
while true
c = fromFile.read(1);pos += 1
if "1234567890".include? c
value << c
else break
end
end
break
elsif c == "t"
# true follows
c = fromFile.read(3);pos += 3
if c != "rue"
raise "excpected true but found t#{c.inspect} position: #{pos}"
end
value = "true"
c = fromFile.read(1);pos += 1
break
elsif c == "f"
# false follows
c = fromFile.read(4);pos += 4
if c != "alse"
raise "excpected false but found f#{c.inspect} position: #{pos}"
end
value = "false"
c = fromFile.read(1);pos += 1
break
else raise "5malformed json for excel conversion! char: #{c.inspect} position: #{pos}"
end
end
# value starts
object[name] = value
puts object
end
puts "c: #{c.inspect}"
if c == ","
# comma is ok! just take many of them, does not hurt.
elsif c == ' ' or c == '\n' or c == '\r'
# whitespace is ok
elsif c == "}"
# object ends!
break
else raise "3malformed json for excel conversion! char: #{c.inspect} position: #{pos}"
end
end
attributes.each{|attr|
value = object[attr]
raise "expected object #{object} to have attribute #{attr} position: #{pos}" if value.nil?
toFile.write(value)
toFile.write(',')
}
toFile.write("\"\"\r\n") # this is the csv new line. a new object begins here
elsif c == ' ' or c == '\n' or c == '\r'
# whitespace is ok
elsif c == ']'
attributes.each{ |attr|
toFile.write(attr.inspect)
toFile.write(",")
}
toFile.write("\"\"\r\n") # this is the csv new line. a new object begins here
# the end of the file
c = fromFile.read()
if c != ''
raise "end of listing was reached. skipping #{c.size} character after position #{pos}: #{c.inspect}"
end
break
elsif c == ','
# comma is ok! just take many of them, does not hurt.
else
raise "2malformed json for excel conversion! char: #{c.inspect} position: #{pos}"
end
end
break
else
raise "1malformed json for excel conversion! char: #{c.inspect} position: #{pos}"
end
end
end
json2excel(File.open('json.txt'), File.open('excel.csv', 'wb'))
json.txt
[{"id": 1,"pro_id": 3,"pro_name": "asdf","cli_id": 113,"cli_name": "tyuryt"} , {"id": 1,"pro_id": 3,"pro_name": "asdf","cli_id": 113,"cli_name": "tyuryt"}]
excel.csv
1,3,"asdf",113,"tyuryt",""
1,3,"asdf",113,"tyuryt",""
"id","pro_id","pro_name","cli_id","cli_name",""
您的列名在文件末尾。
如果在第一个对象之后引入新属性,则并非所有列的元素计数都相等。
注意:它不会将所有内容加载到内存中,而是尽快将其写入文件。
它不做什么:
.
的数字"
的字符串。关于ruby - 巨大的 json 对象要出类拔萃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17185439/
我通过在共享首选项中使用 GSON 将其转换为 json 来存储我的复杂对象。但是在检索它时,无法获得预期的字符串。 代码 这里 holderListCustomizationMap 是对象的复杂映射
因此,我正在尝试对大于可用RAM的gz压缩文件执行某种面向行的操作,因此排除了将其首先读取为字符串的情况。问题是,如何在rust(缺少gunzip file.gz|./my-rust-program)
我试图更好地理解为什么具有潜在大精度的大数字处理不一致,特别是在 JavaScript 及其本地化工具(例如 ECMA-402/Intl)中。我假设这与 float 的使用有关,但我想了解限制在哪里和
我们有一个 5GB 的 csv 文件,这是我们业务的主列表。 有多个类别,每个类别包含数千条记录。我们的目标是将每个类别导出为其自己的 csv 文件。 我们如何运行查询并导出数据? 运行 OSX。有没
基于上一个问题 ( see here ),我试图通过 xmlEventParse 读取许多大型 xml 文件,同时保存节点变化数据。使用此示例 xml:https://www.nlm.nih.gov/
我正在开发一个系统,它加载一个巨大的 CSV 文件(超过 100 万行)并保存到数据库中。每行也有超过一千个字段。 CSV 文件被视为一个批处理,每一行都被视为其子对象。在添加对象的过程中,每个对象都
借助node-google模块 我编写了一个简单的 Node 模块来为我的网络应用程序启用“文本网络搜索”功能,并在我的一个 View 中显示结果。 由于在来自同一 IP 的少量查询后 Google
我有相当大的 4D 阵列 [20x20x40x15000],我使用 h5py 将其作为 HDF5 文件保存到磁盘.现在的问题是我想计算整个数组的平均值,即使用: numpy.average(HDF5_
我在遗留代码库中连接巨大的 CString 时遇到问题。 CStrings 可以包含 base64 编码的文件,因此可能很大。在某些时候,这些 CString 会像这样连接起来: result +=
我正在尝试让我的服务器提供来自另一台服务器的巨大文件。但是,为了保护我的凭据免受该远程服务器的攻击,我不能简单地将请求者重定向到文件 url;另一方面,虽然使用 StreamingHttpRespon
感谢对此的任何见解,我有 2 个问题: 1) 弄清楚为什么我的本地数据库 oplog 庞大且不断增长 2) 安全删除(或重置)我的 local.oplog 以释放 18 GB 的浪费空间 场景:我一直
我的预期任务:获取大量数据(1 GB 及更多大小)json 字符串,操作(进行一些格式化、解析 json、重组 json 数据)并写入新格式化的 json 字符串作为响应。处理这种情况的更好方法是什么
我做了一个小的 Angular 4 应用程序,但我不知道如何应用 tree shaking 和 aot 编译。我运行的命令如下: ng build --prod --aot 但我得到的结果仍然很大,供
我是一名优秀的程序员,十分优秀!