Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 657497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:49:50+00:00 2026-05-13T22:49:50+00:00

I am trying to read contents of a file using string tokenizer and store

  • 0

I am trying to read contents of a file using string tokenizer and store all the tokens in an array but i keep getting exception in main error. I need advise on how to do this.Below is the code am using for that;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.util.StringTokenizer;

public class FileTokenizer
{
    private static final String DEFAULT_DELIMITERS = "< , { } >";
    private static final String DEFAULT_TEST_FILE = "trans1.txt";


    public List<String> tokenize(Reader reader) throws IOException
    {
        List<String> tokens = new ArrayList<String>();

        BufferedReader br = null;

        try
        {
            int i = 0;
            br = new BufferedReader(reader);
            Scanner scanner = new Scanner(br);
            while (scanner.hasNext())
            {

                StringTokenizer st = new StringTokenizer(scanner.next(), DEFAULT_DELIMITERS, true);
                while (st.hasMoreElements())
                {
                    String[] t = new String[200];

            tokens.add(st.nextToken());

                    t[i] = st.nextToken(); 

                    System.out.println(t[i]);

                    i++;                                      
                }
            }
        }
        finally
        {
            close(br);
        }

        return tokens;
    }

    public static void close(Reader r)
    {
        try
        {
            if (r != null)
            {
                r.close();
            }
        }
        catch (IOException e)
        {
            e.printStackTrace();
        }
    }

   public static void main(String[] args)
    {
        try
        {
            String fileName = ((args.length > 0) ?  args[0] : DEFAULT_TEST_FILE);
            FileReader fileReader = new FileReader(new File(fileName));
            FileTokenizer fileTokenizer = new FileTokenizer();
            List<String> tokens = fileTokenizer.tokenize(fileReader);
            //System.out.println(tokens);
        }
        catch (IOException e)
        {
            e.printStackTrace();
        }
    }
}

My file looks like;

PDA = (
{ q1, q2, q3, q4},
{ 0, 1 },
{ 0, $ },
{ (q1, @, @) -> { (q2, $) }, (q2, 0, @) -> { (q2, 0) },
(q2, 1, 0) -> { (q3, @) }, (q3, 1, 0) -> { (q3, @) },
(q3, @, $) -> { (q4, @) } },
q1,
{ q1, q4}
)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T22:49:50+00:00Added an answer on May 13, 2026 at 10:49 pm

    HI,

    I have modified your code and Now works perfectly fine, check this

    package org.sample;
    import java.io.BufferedReader; 
    import java.io.File; 
    import java.io.FileReader; 
    import java.io.IOException; 
    import java.io.Reader; 
    import java.util.ArrayList; 
    import java.util.List; 
    import java.util.Scanner; 
    import java.util.StringTokenizer; 
    
    public class FileTokenizer 
    { 
        private static final String DEFAULT_DELIMITERS = "< , { } >"; 
     // private static final String DEFAULT_TEST_FILE = "trans1.txt"; 
    
        public List<String> tokenize(Reader reader) throws IOException 
        { 
            List<String> tokens = new ArrayList<String>(); 
    
            BufferedReader br = null; 
    
            try 
            { 
                int i = 0; 
                br = new BufferedReader(reader); 
                Scanner scanner = new Scanner(br); 
                while (scanner.hasNext()) 
                { 
    
                    StringTokenizer st = new StringTokenizer(scanner.next(), DEFAULT_DELIMITERS, true); 
                    while (st.hasMoreElements()) 
                    { 
                        String[] t = new String[200]; 
                        // tokens.add(st.nextToken()); 
                        //    t[i] = st.nextToken();  
    
                        System.out.println(t[i]); 
    
                        i++;                                       
                    } 
                } 
            } 
            finally 
            { 
                close(br); 
            } 
    
            return tokens; 
        } 
    
        public static void close(Reader r) 
        { 
            try 
            { 
                if (r != null) 
                { 
                    r.close(); 
                } 
            } 
            catch (IOException e) 
            { 
                e.printStackTrace(); 
            } 
        } 
    
       public static void main(String[] args) 
        { 
            try 
            { 
              //  String fileName = ((args.length > 0) ?  args[0] : DEFAULT_TEST_FILE); 
                FileReader fileReader = new FileReader(new File("c:\\DevTest\\1.txt")); 
                FileTokenizer fileTokenizer = new FileTokenizer(); 
                List<String> tokens = fileTokenizer.tokenize(fileReader); 
                //System.out.println(tokens); 
            } 
            catch (IOException e) 
            { 
                e.printStackTrace(); 
            } 
        } 
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to read the contents of a .csproj file using sharpsvn, but I
I'm trying to read the contents of a small text file using the common
I am using vc2010 and I am trying to read contents of a file
I'm trying to read a text file, i'm using fileImputStream, and reading all the
I'm trying to read the content from a URL with Node.js but all I
Trying to read an RSS and select information using Linq but can't seem to
I'm able to successfully parse the contents of a XML file using TouchXML, but
I'm trying to read and store an RSS feed in my database using this
I am trying to read a CSV file and have it display the contents
In VB.NET or C#, I'm trying to read the contents of a text file

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.