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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T20:55:51+00:00 2026-06-02T20:55:51+00:00

From the javadoc public String readLine() throws IOException Read a line of text. A

  • 0

From the javadoc

public String readLine()
            throws IOException

Read a line of text. A line is considered to be terminated by any one of a line feed ('\n'), a carriage return ('\r'), or a carriage return followed immediately by a linefeed. 

I have following kind of text :

Now the earth was formless and empty.  Darkness was on the surface
of the deep.  God's Spirit was hovering over the surface
of the waters.

I am reading lines as:

 while(buffer.readline() != null){
       }

But, the problem is it is considering a line for string upto before newline.But i would like to consider line when string ends with .. How would i do it?

  • 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-02T20:55:53+00:00Added an answer on June 2, 2026 at 8:55 pm

    You can read a character at a time, and copy the data to a StringBuilder

    Reader reader = ...;
    StringBuilder sb = new StringBuilder();
    int ch;
    while((ch = reader.read()) >= 0) {
        if(ch == '.') break;
        sb.append((char) ch);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using the following code to get a JSON string from a URL: public
From JavaDoc : public void validate() Validates this container and all of its subcomponents.
From Javadoc of ArrayBlockingQueue ArrayBlockingQueue : add public boolean add(E e) Inserts the specified
From the JavaDoc, the EXTRA_STREAM parameter when launching an intent needs to be an
I am writing a tool to scrape Javadoc from pre-existing Java source files and
Possible Duplicate: When do you use Java’s @Override annotation and why? From the javadoc
From such a job, I'm doing: @OnApplicationStart public class Bootstrap extends Job { Foo
From what I read, the purpose of depmod is to track dependencies for each
I want to read an RSS feed on my app, i have been based
When I compile something like this: public class MyClass { void myMethod(String name, String

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.