Home > Java > Java Program to print integers you have input through console using BufferedReader and StringTokenizer – Q42

Java Program to print integers you have input through console using BufferedReader and StringTokenizer – Q42

January 21, 2009 Leave a comment Go to comments

Q42: Java Program to print integers you have input through console using BufferedReader and StringTokenizer.

import java.util.*;
import java.io.*;

class Buf_R_Str_Token{
	public static void main(String args[]) throws IOException{
		BufferedReader b_r = new BufferedReader(new 
InputStreamReader(System.in));
		String str = b_r.readLine();
		
		StringTokenizer st = new StringTokenizer(str, ",");
		
		String item;
		try{
			while((item = st.nextToken()) != null){
				System.out.print(" " + item);
			}
		}
		catch(Exception e){
			System.out.println("\n End of String.");
		}
	}
}

… from College notes (BCA/MCA assignments):


Advertisement
  1. No comments yet.
  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d bloggers like this: