标签: android size audio-recording
我正在创建一个应用程序,我必须得到amr文件的大小。对此有任何帮助将不胜感激。谢谢。
答案 0 :(得分:1)
好像你有路径只是将你的路径放在给定的代码中,你将获得以字节为单位的文件长度。
File file=new File("/sdcard/"+path of the file whose size you want); long length = file.length();
希望它有所帮助。