IOUtils

package com.itheima.googleplay_8.utils;

import java.io.Closeable;
import java.io.IOException;

public class IOUtils {
    /** 关闭流 */
    public static boolean close(Closeable io) {
        if (io != null) {
            try {
                io.close();
            } catch (IOException e) {
                LogUtils.e(e);
            }
        }
        return true;
    }
}
时间: 2024-10-10 10:30:46

IOUtils的相关文章

利用commons-io.jar包中FileUtils和IOUtils工具类操作流及文件

1.String IOUtils.toString(InputStream input),传入输入流对象,返回字符串,有多重重载,可按需要传参 用例: @Test public void showInfoByIOUtils() throws IOException { URL url = new URL("https://www.baidu.com"); InputStream in = url.openStream(); System.out.println(in); try { S

Tomcat中使用commons-io-2.5发生的错误java.lang.ClassNotFoundException: org.apache.commons.io.IOUtils

关键词:IntelliJ IDEA.Tomcat.commons-io-2.5.jar.java.lang.ClassNotFoundException: org.apache.commons.io.IOUtils 1.错误提示信息 图1 运行登录时错误信息 //Tomcat Localhost Log信息 org.apache.catalina.core.StandardWrapperValve.invoke Servlet.service() for servlet [Servlet] in

10.10-全栈Java笔记:Apache IOUtils和FileUtils的使用

JDK中提供的文件操作相关的类,功能非常基础,进行复杂操作时需要做大量编程工作.实际开发中,往往需要你自己动手编写相关的,尤其在遍历目录文件时,经常用到递归,非常繁琐. Apache-commons工具包中提供了FileUtils,可以让我们非常方便的对文件和目录进行操作. 本文就是让大家对FileUtils类有一个全面的认识,便于大家以后开发文件和目录相关功能. Apache IOUtils和FileUtils类库为我们提供了更加简单.功能更加强大的文件操作和IO流操作功能.非常值得大家学习和

使用Apache的IOUtils实现文件下载

废话不多说,直接上代码,注释写得也比较清楚. /** * 下载模板文件 * @param filename 要下载的文件在工程中的路径,如/template/userTemplate.xls */ @RequestMapping("/common/downloadtemplatefile") public void downloadTemplateFile(String filename, HttpServletResponse response, HttpServletRequest

Delphi FMX 手机目录提取,把IO相关的都提取到System.IoUtils单元中

Delphi把IO相关的都提取到System.IoUtils单元中.路径操作使用TPath的方法都很方便.uses System.IoUtils TPath.GetTempPath//临时目录TPath.GetCameraPath//照相机目录(照片/录像)TPath.GetMusicPath//音乐目录TPath.GetDownloadsPath//下载目录……如果使用TPath类的静态方法那么代码就是跨平台的,在Windows,Mac,iOS,Android上都能用.如果仅仅对Android

java 实现下载htttp文件的简便办法 FileUtils IOUtils

其实很多时候,我们并不需要去重复造轮子,只需要借 就可以.但是前提就得你得知道谁家有轮子可借才行.这次就用到了 org.apache.common.io 家的轮子了. 具体实现: public String downloadHttpUrl(String url, String dir) { String fileName = "test.jpg"; try { URL httpurl = new URL(url); File f = new File(dir + fileName);

Commons-IO - IOUtils

IOUtils is a general IO stream manipulation utilities. This class provides static utility methods for input/output operations. closeQuietly - these methods close a stream ignoring nulls and exceptions toXxx/read - these methods read data from a strea

IOUtils总结

常用的静态变量 在IOUtils中还是有很多常用的一些变量的,比如换行符等等 public static final char DIR_SEPARATOR_UNIX = '/'; public static final char DIR_SEPARATOR_WINDOWS = '\\'; public static final char DIR_SEPARATOR; public static final String LINE_SEPARATOR_UNIX = "\n"; publi

IOUtils方式上传下载文件

package com.css.hdfs04; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; import org.apache.hadoop.conf.Configuration; import org