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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:01:46+00:00 2026-05-27T07:01:46+00:00

this is my first question here so I hope I’m doing this right. I

  • 0

this is my first question here so I hope I’m doing this right. I have a programming project that needs to read each line of a tab delimited text file and extract a string, double values, and int values. I’m trying to place these into separate arrays so that I can use them as parameters. This is what I have so far(aside from my methods):

import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.Scanner;

public class LoanDriver {

public static void main(String[] args)
{
    String[] stringData = new String[9];
    Scanner strings = null;

    try 
    {
        FileReader read = new FileReader("amounts.txt");//Read text file.
        strings = new Scanner(read);

        String skip = strings.nextLine();//Skip the first line by storing it in an uncalled variable

        strings.useDelimiter("\t *");//Tab delimited


    }
    catch (FileNotFoundException error) 
    {}

    while (strings.hasNext())
        {
            String readLine = strings.next();
            stringData = readLine.split("\t");
        }
}}

If I try to get the [0] value, it skips all the way to the bottom of the file and returns that value, so it works to some extent, but not from the top like it should. Also, I can’t incorporate arrays into it because I always get an error that String[] and String is a type mismatch.

  • 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-27T07:01:47+00:00Added an answer on May 27, 2026 at 7:01 am

    Instead of using delimiter, try reading the file line by line using Scanner.nextLine and split each new line you read using String.split (“\t” as argument).

    try {
        FileReader read = new FileReader("amounts.txt");//Read text file.
        strings = new Scanner(read);
        String skip = strings.nextLine();//Skip the first line by storing it in an uncalled variable
    }
    catch (FileNotFoundException error) { }
    
    String line;
    while ((line = strings.nextLine()) != null) {            
         String[] parts = line.split("\t");
         //...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

it's my first question here and I hope that I'm doing it right. I
This is my first question here, so I hope that I am providing enough
This is my first question here on stackoverflow, so I hope that I am
this is my first question here so I hope I can articulate it well
This is my first time here so I hope I post this question at
this is my first question here :) I know that I should not check
Greetings to all! This is my first question here on stackoverflow. I have a
this is my first question.. so, here we go. i have a site, 100%
Sorry, this's my first time to ask a question here. So, I don't have
this is my first time posting here, I have a question which I have

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.