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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:25:31+00:00 2026-06-13T19:25:31+00:00

I have a text file which has data as follows: Surrender~abc~nov@2012 Surrender~bnc~bhdgvx Surrender~nkhjb~bcdjh .

  • 0

I have a text file which has data as follows:

Surrender~abc~nov@2012
Surrender~bnc~bhdgvx
Surrender~nkhjb~bcdjh
.
.
.

I want to separate the data row by row and store second and third column values in Hashmap as 2nd -> key and 3rd -> value and check if the value entered by user exist in the Hashmap and return true.

I tried following but getting java.lang.ArrayIndexOutOfBoundsException: 3..Please guide.

HashMap hm = new HashMap();
FileInputStream fstream = new FileInputStream("Surrender.txt");
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));

String strLine;
while ((strLine = br.readLine()) != null)   {
    String[] parts = strLine.split("~");
    for (int i = 0; i <= parts.length; i++) {
       if(!parts[i].equalsIgnoreCase("Surrender")){
    String key=parts[i];
    String value=parts[i++];
    if(key!=null && value!=null)
    hm.put(key,value);
}
    }
}

System.out.println("HashMap size..." + hm.size());
in.close();
  • 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-13T19:25:32+00:00Added an answer on June 13, 2026 at 7:25 pm

    Since each of your lines looks like this:

    Surrender~abc~nov@2012
    

    there are three parts after splitting by ~:

    • Surrender
    • abc
    • nov@2012

    These parts are numberd from 0 to 2.

    Solution: Don’t loop over the parts. Do this instead:

    hm.put(parts[1], parts[2]);
    

    Drop these lines:

    for (int i=0;i<=parts.length;i++) {
        if (!parts[i].equalsIgnoreCase("Surrender")) {
            hm.put(parts[i], parts[++i]);
        }
    }
    

    Note: Use a generic Map:

    Map<String, String> hm = new HashMap<>(); // Java 7
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file which has the follwing data, dup dx mul x0
I have a large text file ( data ) which has the following layout:
I have data in some text file which has let's say 10000 rows and
I have a text file which has the following data {i:1, j:2} {k:3, l:10}
I have a text file which has a particular line something like sometext sometext
I have this xml file which has text init. i.e Hi my name is
i have a java ee project which has a text file that uses a
I'm having trouble with PHP text parsing I have a txt file which has
I have a text file which I am reading and storing the data in
I have a text file which contains data seperated by '|'. I need to

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.