Android读取asset目录的文件转File
直接调用writeBytesToFile: writeBytesToFile(getActivity().getAssets().open("xxx文件名"),file);public static void writeBytesToFile(InputStream is, File file) throws IOException{ FileOutputStream fos = null...