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

  • Home
  • SEARCH
  • 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 4120948
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T23:17:18+00:00 2026-05-20T23:17:18+00:00

I’m a Java newbie and can’t seem to figure out why this crude, 20

  • 0

I’m a Java newbie and can’t seem to figure out why this crude, 20 minute app is throwing that exception.

Basically I am parsing a 192MB (yes, 192MB) tab-delimited text file and storing the contents into MongoDB.

package get_alternatenames;

import java.io.BufferedReader;
import java.io.FileReader;

import com.mongodb.Mongo;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.DBCursor;
import java.util.Set;

/**
 *
 * @author cbmeeks
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws Exception {
        String alternateNamesFileName = "/Users/cbmeeks/Projects/GetData/geonames/alternateNames.txt";
        String line;

        // MongoDB
        Mongo m = new Mongo("localhost", 27017);
        DB db = m.getDB("mydb");

        // Build AlternateNames
        DBCollection altNames = db.getCollection("alternatenames");
        BufferedReader bReader = new BufferedReader(new FileReader(alternateNamesFileName));

        int isPreferredName = 0;
        int isShortName = 0;
        int lines = 0;

        System.out.println("Starting AlternateNames import...");

        while ((line = bReader.readLine()) != null) {
            String l[] = line.split("\t");
            BasicDBObject altName = new BasicDBObject();
            altName.put("alternateNameId", l[0]);
            altName.put("geonameId", l[1]);
            altName.put("isoLanguage", l[2]);
            altName.put("alternateName", l[3]);

            isPreferredName = 0;
            isShortName = 0;

            try {
                if (l[4] != null) {
                    isPreferredName = Integer.parseInt(l[4]);
                }
            } catch (ArrayIndexOutOfBoundsException ex) {
                isPreferredName = 0;
            } catch (Exception ex) {
                isPreferredName = 0;
            }

            try {
                if (l[5] != null) {
                    isShortName = Integer.parseInt(l[5]);
                }
            } catch (ArrayIndexOutOfBoundsException ex) {
                isShortName = 0;
            } catch (Exception ex) {
                isShortName = 0;
            }

            altName.put("isPreferredName", isPreferredName);
            altName.put("isShortName", isShortName);

            altNames.insert(altName);

            lines++;
        }

        bReader.close();
        System.out.println("Number of lines parsed: " + lines);

        System.out.println("Creating indexes...");
        altNames.createIndex(new BasicDBObject("geonameId", 1));
        altNames.createIndex(new BasicDBObject("isoLanguage", 1));
        altNames.createIndex(new BasicDBObject("alternateName", 1));

    }
}

I know this isn’t the most beautiful code in the world. And it actually seems to work until around the end. It successfully imports 5.4 million records and then ends with:

Starting AlternateNames import...
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException
Java Result: 1
BUILD SUCCESSFUL (total time: 2 minutes 58 seconds)

I can’t seem to find what the problem is. I’ve tried to search the text file to find a problem but at 192MB, nothing seems to be able to handle it except MacVIM and I can’t quite get my head around that program. lol

But I am sure it isn’t finishing the file. When I go to the last record imported in the text file (based on the record count in MongoDB) it appears to look fine…but I could be missing something.

Any suggestions?

Thanks.

BTW, kudos to Java for parsing that text file in under 3 minutes…

  • 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-20T23:17:18+00:00Added an answer on May 20, 2026 at 11:17 pm

    Here is my corrected code that works. Thanks all for the tips.

    package get_alternatenames;
    
    import java.io.BufferedReader;
    import java.io.FileReader;
    
    import com.mongodb.Mongo;
    import com.mongodb.DB;
    import com.mongodb.DBCollection;
    import com.mongodb.BasicDBObject;
    import com.mongodb.DBObject;
    import com.mongodb.DBCursor;
    import java.util.Set;
    
    /**
     *
     * @author cbmeeks
     */
    public class Main {
    
        /**
         * @param args the command line arguments
         */
        public static void main(String[] args) throws Exception {
            String alternateNamesFileName = "/Users/cbmeeks/Projects/GetData/geonames/alternateNames.txt";
            String line;
    
            // MongoDB
            Mongo m = new Mongo("localhost", 27017);
            DB db = m.getDB("MyDB");
    
            // Build AlternateNames
            DBCollection altNames = db.getCollection("alternatenames");
            BufferedReader bReader = new BufferedReader(new FileReader(alternateNamesFileName));
    
            int isPreferredName = 0;
            int isShortName = 0;
            int lines = 0;
    
            System.out.println("Starting AlternateNames import...");
    
            while ((line = bReader.readLine()) != null) {
                try {
                    String l[] = line.split("\t");
                    if (l.length >= 4) {
                        BasicDBObject altName = new BasicDBObject();
                        altName.put("alternateNameId", Integer.parseInt(l[0]));
                        altName.put("geonameId", Integer.parseInt(l[1]));
                        altName.put("isoLanguage", l[2]);
                        altName.put("alternateName", l[3]);
    
                        isPreferredName = 0;
                        isShortName = 0;
    
                        if (l.length == 5) {
                            isPreferredName = Integer.parseInt(l[4]);
                        }
    
                        if (l.length == 6) {
                            isPreferredName = Integer.parseInt(l[4]);
                            isShortName = Integer.parseInt(l[5]);
                        }
    
                        altName.put("isPreferredName", isPreferredName);
                        altName.put("isShortName", isShortName);
    
                        altNames.insert(altName);
    
                        lines++;
                    }
                } catch (Exception ex) {
                }
    
            }
    
            bReader.close();
            System.out.println("Number of lines parsed: " + lines);
    
            System.out.println("Creating indexes...");
            altNames.createIndex(new BasicDBObject("geonameId", 1));
            altNames.createIndex(new BasicDBObject("isoLanguage", 1));
            altNames.createIndex(new BasicDBObject("alternateName", 1));
    
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know how can I replace this 2 symbol below from the string
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I've got a string that has curly quotes in it. I'd like to replace
link Im having trouble converting the html entites into html characters, (&# 8217;) i
this is what i have right now Drawing an RSS feed into the php,
That's pretty much it. I'm using Nokogiri to scrape a web page what has
Seemingly simple, but I cannot find anything relevant on the web. What is the
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti

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.