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 7728037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T05:36:55+00:00 2026-06-01T05:36:55+00:00

I have a simple text dictionary file, which contains words, separated by ‘;’.My problem

  • 0

I have a simple text dictionary file, which contains words, separated by ‘;’.My problem is to read all words and store them in map without loading all file to a string(dictionary file may be very huge).
Here is my code, where i am trying to print these words to a console :

 import java.io.File;
 import java.io.FileNotFoundException;
 import java.io.FileReader;
 import java.io.IOException;
 import java.util.Map;

 public class Dictionary {
private static Dictionary instance;
private Map DictionaryMap;
private String delimiter;

private Dictionary() {

}

private Dictionary(String dictfile, String delimiter) throws FileNotFoundException, IOException
{
    FileReader fr = new FileReader(dictfile);
    int position = 0;
    StringBuffer buffer = new StringBuffer();
    while ((position = fr.read()) != -1) {
        char symbol = (char) fr.read();
        if(symbol != ';') {
            buffer.append(symbol);
            System.out.println("Char is : "+symbol+" ;");
        } else {
            System.out.println("String is "+buffer+" ;");
            buffer.delete(0, buffer.length()-1);
        }
    }
}

public void loadFromFile(File dictfile, String delimiter) {

}

public String getDelimiter() {
    return delimiter;
}

public void setDelimiter(String delimiter) {
    this.delimiter = delimiter;
}

But when i am trying to run this code on sample dict.txt file, which contains :

test1;test2 ;

Some of the symbols between delimiter (char ‘;’) doesn’t displays :

Char is : e ;
Char is : t ;
String is et ;
Char is : e ;
Char is : t ;
Char is : ;
Char is : \uffff ;

My question why it doesn’t works properly and how to read chars from fileinputstream (in my case) without type casting?

  • 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-06-01T05:36:56+00:00Added an answer on June 1, 2026 at 5:36 am

    You are calling fr.read() twice e.g.

    while ((position = fr.read()) != -1) {
        char symbol = (char) fr.read();
    

    Therefore you are skipping input.

    This should be:

      while ((position = fr.read()) != -1) {
        char symbol = (char) position;
    

    Also it’s not generally a good idea to read the file 1 character at a time – you should try and use a char [] as a buffer and use the read(char[] cbuf, int off, int len) method, or for simplicity, use a BufferedReader.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple text file with several thousands of words, each in its
I have a very simple python script that should scan a text file, which
I want to read simple excel xml file to dictionary. I have tried to
I have a simple WPF (XAML) file that has some animated shapes and text.
I know zero javascript, and have one simple task: Find all text in the
I have following task to do: to fill spell check dictionary (simple txt file)
I'd like to create a dictionary from a text file that I have, who's
Say I have a file, that contains some text. There are substrings like substr1,
I have a simple text reading code for Visual Basic: Dim fileReader As String
I have a simple text box in a WPF application. I need to know

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.