-
/*Java InputStream to String ExampleThis Java InputStream to String example shows how to convert InputStream to String in Java.*/public class ConvertInputStreamToStringExample
{
public static void main(String args[]) throws IOException{
//get InputStream of a fileInputStream is = new FileInputStream(“c:/data.txt”);String strContent;
/** There are several way to convert InputStream to String. First is using* BufferedReader as given below.*/
//Create BufferedReader objectBufferedReader bReader = new BufferedReader(new InputStreamReader(is));StringBuffer sbfFileContents = new StringBuffer();String line = null;
//read file line by linewhile( (line = bReader.readLine()) != null)
{sbfFileContents.append(line);}
//finally convert StringBuffer object to String!strContent = sbfFileContents.toString();
/** Second and one liner approach is to use Scanner class. This is only supported* in Java 1.5 and higher version.*/
strContent = new Scanner(is).useDelimiter(“\\A”).next();}}
Friday, 13 April 2018
Popular Posts
-
Python has one of the richest ecosystems of libraries and tools, making it a favorite for developers worldwide. GitHub is the ultimate tre...
-
Code Explanation: i = 0 The variable i is initialized to 0. while i < 5 : A while loop is started, which will run as long as the condi...
-
Explanation: range(5): Generates a sequence of numbers from 0 to 4 (inclusive). The for loop iterates through each of these numbers, assig...
-
Explanation: Step 1: a = [1, 2, 3, 4, 5] A list a is created with the values [1, 2, 3, 4, 5]. Step 2: b = a The variable b is assigned t...
-
What you'll learn Master the most up-to-date practical skills and knowledge that data scientists use in their daily roles Learn the to...
-
Prepare for a career as a full stack developer. Gain the in-demand skills and hands-on experience to get job-ready in less than 4 months. ...
-
Decorators in Python are an advanced feature that can take your coding efficiency to the next level. They allow you to modify or extend th...
-
What you'll learn Develop data engineering solutions with a minimal and essential subset of the Python language and the Linux environm...
-
How it works: List Initialization: numbers = [1, 2, 3, 4, 5] creates a list of integers. Indexing from the End: len(numbers) calculates th...
-
Explanation: Initialization: numbers = [ 2 , 5 , 1 , 3 , 4 ] We define a list numbers containing five elements: [2, 5, 1, 3, 4]. Loop with...
Categories
100 Python Programs for Beginner
(96)
AI
(38)
Android
(24)
AngularJS
(1)
Assembly Language
(2)
aws
(17)
Azure
(7)
BI
(10)
book
(4)
Books
(186)
C
(77)
C#
(12)
C++
(83)
Course
(67)
Coursera
(246)
Cybersecurity
(25)
Data Analysis
(1)
Data Analytics
(2)
data management
(11)
Data Science
(141)
Data Strucures
(8)
Deep Learning
(21)
Django
(14)
Downloads
(3)
edx
(2)
Engineering
(14)
Euron
(29)
Excel
(13)
Factorial
(1)
Finance
(6)
flask
(3)
flutter
(1)
FPL
(17)
Generative AI
(9)
Google
(34)
Hadoop
(3)
HTML Quiz
(1)
HTML&CSS
(47)
IBM
(30)
IoT
(1)
IS
(25)
Java
(93)
Java quiz
(1)
Leet Code
(4)
Machine Learning
(76)
Meta
(22)
MICHIGAN
(5)
microsoft
(4)
Nvidia
(4)
Pandas
(4)
PHP
(20)
Projects
(29)
Python
(997)
Python Coding Challenge
(444)
Python Quiz
(77)
Python Tips
(3)
Questions
(2)
R
(70)
React
(6)
Scripting
(1)
security
(3)
Selenium Webdriver
(4)
Software
(17)
SQL
(42)
UX Research
(1)
web application
(8)
Web development
(4)
web scraping
(2)
0 Comments:
Post a Comment