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.
我Android App不断地将日志写入.txt文件。我想限制这个文件的大小。即,如果文件大小超过1MB它就不会再写任何日志,并且会向用户发送通知,告知您的日志文件中没有更多空间。我该如何实现呢?
Android
App
.txt
1MB
试试这个代码来计算大小:
File file = new File("text.txt"); long filesize = file.length(); long filesizeInKB = filesize / 1024; long filesizeinMB=filesizeInKB/1024;