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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:59:31+00:00 2026-05-26T07:59:31+00:00

I want to make my class return a value but I want that value

  • 0

I want to make my class return a value but I want that value to change based like the loop. I think my code will explain it better than I can.

    public static String readChat(String value) throws Exception
{
    FormatS FormatS = new FormatS();

    BufferedReader mainChat = new BufferedReader(new FileReader("./chat.txt"));
    String str;
    while ((str = mainChat.readLine()) != null) 
    {
        String msg = FormatS.FormatS(str, value);
    }
    mainChat.close();
return (msg);

Unfortunately that will only return the last one since the loop isn’t returned but only the last message in the loop, How can I make it return every value in the loop as a seperate return? (If possible from here without affecting the other classes)

  • 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-26T07:59:31+00:00Added an answer on May 26, 2026 at 7:59 am

    You can’t. A Java method only returns one value, it can’t return several times.
    After the return statement, you’re out of that method!

    You can use a Collection (like a List, for instance), to store all your messages, and then return the list.

    http://download.oracle.com/javase/6/docs/api/java/util/Collection.html

    Check here for additional information on collections. If you’re new to Java and plan on sticking with it, it’s a pretty crucial aspect to master :).

    What you should do is instantiate a new Collection, for instance:

    List<String> messageList = new ArrayList<String>();
    

    and then inside your loop, you’ll do…

    messageList.add(msg);
    

    And for the gran finale, of course…

    return messageList;
    

    In the “outside” method (the caller), you can interate over the list, and use the messages for your needs.

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

Sidebar

Related Questions

I want to write a 'Date' class that behaves like a Value Type. for
I want to make a generic class that accepts only serializable classes, can it
I have style sheet with a class name changebackgroundcolor i want make change in
I often find I want to write code something like this in C#, but
I don't want to make a new instance of Form1 in the class, and
In Python, I want to make selected instance attributes of a class be readonly
I want to use a category to make a method on the original class
I am using this code to make a Simple Command: public class SimpleCommand :
I have this C# class structure that I would like to refactor to use
I would like to change the value of an input field when the form

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.