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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T16:54:22+00:00 2026-06-10T16:54:22+00:00

In my J2ME application, I got data from .csv file and display all data

  • 0

In my J2ME application, I got data from .csv file and display all data from file on device. But according to my requirement, I want to display only single cell data on device.So,how can I fetch single cell record from .csv file and display it on device?

“Update After Comment“

InputStream is = getClass().getResourceAsStream("/" + "csvsample.csv");

StringBuffer sb = new StringBuffer();

 try {

int chars;

 while ((chars = is.read()) != -1) {

 sb.append((char) chars);

 return sb.toString();

 } catch (Exception e) {

System.out.println("Exception Occurance::" + e);

}

return sb.toString();

}
  • 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-10T16:54:24+00:00Added an answer on June 10, 2026 at 4:54 pm

    First you must read one line at a time. For this you can use below method:

    private boolean readLine (InputStream is, StringBuffer line) throws IOException {
        int c = in.read();
    
        while (c != -1 && c != '\n') {
            line.append((char) c);
            c = in.read();
        }
    
        return line.length() > 0;
    }
    

    Then you need to split the line content based on , separator, for example, like at this other question How do I split strings in J2ME?.

    while (readLine(is, sb)) {
      String line = sb.toString();
      // split line content
    
      sb.setLength(0);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have developed J2ME application that read data from product.txt file located in binary
I want to put the third party jar file in my j2me application.but i
i have a j2me application , it does the File IO operation, but every
I want to develop a j2me application that will play a video file(.mp4) by
I want to refresh my J2ME application means I want to delete all the
I am trying to download an XML file(in my J2ME Application) from a location
I want to access the inbox message text from j2me application. I have no
I send formula information in the excel file to j2me application with data in
I'm trying to parse a simple XML file in my j2me application. But the
I'm new to J2ME application development, I want to write an ANT script to

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.