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.
我正在实施扩展文件。我使用技术从这个答案中读取 zip 文件。一切都很好,我得到的唯一错误是在 IOUtils 上。其中说 IOUtils 无法解决。我的项目api级别是3.0及以上。
这是行:
**IOUtils**.copy(inputStream, outputStream);
IOUtils 类可用作 Apache Commons 库。可能您需要下载 jar 并将其放在 libs 目录中,然后才能使用它。
或者将以下行添加到您的 build.gradle 并同步您的项目。
compile 'commons-io:commons-io:2.5'