Quantcast
Channel: How do I create a Java string from the contents of a file? - Stack Overflow
Viewing all articles
Browse latest Browse all 36

Answer by Devram Kandhare for How do I create a Java string from the contents of a file?

$
0
0

Use code:

File file = new File("input.txt");BufferedInputStream bin = new BufferedInputStream(new FileInputStream(                file));byte[] buffer = new byte[(int) file.length()];bin.read(buffer);String fileStr = new String(buffer);

fileStr contains output in String.


Viewing all articles
Browse latest Browse all 36

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>