我想在我的 Rhomobile 应用程序中打开、阅读和显示一个 txt 文件。首先,我想显示文件的完整内容。但这是我的问题。
def text
fileName = File.join(Rho::RhoApplication::get_base_app_path(), '/app/test.txt')
f = File.open(fileName, 'r')
while line = f.gets
puts line
end
f.close
redirect :action => :index
end
代码读取了 txt 文件,但我如何调用该方法并在页面上显示结果。我不知道变量是什么?
请帮助我:) 非常感谢!