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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T17:15:28+00:00 2026-06-17T17:15:28+00:00

I need to append variables to each line of text from a TextArea .

  • 0

I need to append variables to each line of text from a TextArea. The TextArea is coded, and works perfectly. I can retrieve information from the TextArea by using TextArea.getText();
To break it apart, I am trying to use a BufferedReader. Unfortunately, this does not work. Is there a different way of doing this? Here is an example of how the information needs to be written in the text area:

“workerName”

“workerDepartment”

“workerNumber”

BufferedReader inStream= new BufferedReader 
(new InputStreamReader(TextArea.getText()));

String workerName = "";

String workerDepartment = "";

int workerNumber = 0;

String line = inStream.readLine();            

while (line != null) {                        

 workerName = line;

 line = inStream.readLine();               

 workerDepartment = line;

 line = inStream.readLine();               

 workerNumber = Integer.parseInt(line);

 }

 inStream.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-17T17:15:28+00:00Added an answer on June 17, 2026 at 5:15 pm

    if the lines are separated by any delimiter(for example newline, comma…) , then use split method of String and put the delimiter

    String[] lines = TextArea.getText().split("\n");
    
    //then you can access your array
    String workerName = lines[0];
    String workerDepartment = lines[1];
    // and so on
    

    Also you need to check array size before getting the value to prevent ArrayOutOfIndexException, for example if there are two lines only then you should not call lines[2], so do the check:

       if ( lines.length < 3 ) {
          // input is not complete, show error message
       }
       else {
          // do your splitting and reading values
       }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

HTML is <a>ref</a> I need to get <a>ref</a>text How can i do this? $('a').append('text')
I need to append some text to an input field...
I need to append text repeatedly to an existing file in Java. How do
I am returning query results from MySQL and I need to append them to
I am designing a game and need to convert the script-variables from meters to
I need to append multiple nodes to a container. Rather than doing a slow
I need to append log4j content to a Swing component (JTextArea or similar). Is
All my div blocks use the same class name and I need to append
I'm creating some scripts to streamline application installations and I need to append to
I need to programatically append to a multi-page TIFF or PDF a new image.

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.