如果从APK安装,我的应用程序不会将文件保存在内部存储中,但如果由IDE安装,则会保存。 APK由Build / Build APK生成
答案 0 :(得分:0)
我解决了这个问题。 不知道为什么,但我什么时候使用
FactoryGirl.define do
factory :booking do
product_name 'Honeyjar 400 ml'
product_quantity '1'
product_price '3,99'
order
after(:create) do |booking|
booking.order.sum_all_bookings
end
end
end
它没有用,但当我改为:
FileOutputStream fos = new FileOutputStream(file);
工作正常。