java path转string,Java中快速把InputStream转化为String

caf60048fc9e

How do I read / convert an InputStream into a String in Java?

caf60048fc9e

占小狼的博客发布的测试结果截图

感兴趣的童鞋可以自己去Stack Overflow看看,当然也可以当个懒人看占小狼的博客的文章总结后的,我这个超级懒人就只写了测试结果最好的ByteArrayOutputStreamand read (JDK)的Demo,留着备用。话不多说,代码留下:

package top.lzzly.FileDemo;

import java.io.*;

import org.apache.log4j.Logger;

public class FileDemo {

private static Logger mLogger = Logger.getLogger("FileDemo");

public static void main(String args[]) {

String filePath = "/Users/lzz/Downloads/lzm_longvideo_platform.sql";

String txt = readFile(filePath);

mLogger.info(txt);

}

/**

* 读取File工具类,返回String

* @param filePath 文件路径

* @return

*/

private static String readFile(String filePath){

try{

File file = new File(filePath);

FileInputStream fis = new FileInputStream(file);

String txt = convertStreamToString(fis);

return txt;

}catch (Exception e){

System.out.println(e.getMessage());

}

return null;

}

/**

* InputStream转String工具类,返回String

* @param inputStream

* @return

*/

private static String convertStreamToString(InputStream inputStream) throws IOException {

ByteArrayOutputStream result = new ByteArrayOutputStream();

byte[] buffer = new byte[1024];

int length;

while ((length = inputStream.read(buffer)) != -1) {

result.write(buffer, 0, length);

}// StandardCharsets.UTF_8.name() > JDK 7

return result.toString("UTF-8");

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值