Java——Read/convert an InputStream to a String
Posted 智信智爱智强不息
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java——Read/convert an InputStream to a String相关的知识,希望对你有一定的参考价值。
获取 InputStream 并将其转换为String的简单方法。
添加commons-io-2.4.jar
import java.io.IOException; import java.io.InputStream; import org.apache.commons.io.IOUtils; public class StringFromFile { public static void main(String[] args) throws IOException { InputStream inputStream = StringFromFile.class.getResourceAsStream("2.txt"); String myString = IOUtils.toString(inputStream, "UTF-8"); System.out.println(myString); } }
来源: http://stackoverflow.com/questions/309424/read-convert-an-inputstream-to-a-string
以上是关于Java——Read/convert an InputStream to a String的主要内容,如果未能解决你的问题,请参考以下文章