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

The Archive Base Latest Questions

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

I already tried references from similar question on SO, but hasn’t got the appropriate

  • 0

I already tried references from similar question on SO, but hasn’t got the appropriate solution.

I’m trying to fetch the data from a webpage and display it in format consisting of rows having 4 columns.

Data present on webpage:

SBIN ;1916.00;1886.85;1.54@LT ;1315.50;1310.30;0.40@TCS ;1180.00;1178.00;0.17@AXISBANK ;1031.30;1005.95;2.52@MARUTI ;1000.35;992.35;0.81@PNB ;931.90;916.35;1.70@GAIL ;400.00;398.45;0.39@

I want to diaplay it in the form

SBIN.........1916.00.....1886.85.....1.54

LT...........1315.50.....1310.30.....0.40  and so on. 

Note that I don’t want dots, I want each value to be a separate column within a row.

My Data consists of 7 rows.

When I run the below code, I get this output Screenshot
i.e.

 values[0]   values[1]   values[2]   values[3]

 values[1]   values[2]   values[3]   values[4]

 values[2]   values[3]   values[4]   values[5]

(It prints all 4 cols of 1st row, then col 2-4 of 1st row and col1 of 2nd row, then cols 3-4 of 1st row and col 1-2 of 2nd row and so on…)

ReadWebpageAsyncTask.java

public class ReadWebpageAsyncTask extends Activity {
    private EditText ed;
    private ListView lv;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        ed = (EditText) findViewById(R.id.ed);
        lv = (ListView) findViewById(R.id.list);
        DownloadWebPageTask task = new DownloadWebPageTask();
        task.execute(new String[] { "http://abc.com/default.aspx?id=G" });
    }

    private class DownloadWebPageTask extends AsyncTask<String, Void, String> {
        @Override
        protected String doInBackground(String... urls) {
            String response = "";
            for (String url : urls) {
                DefaultHttpClient client = new DefaultHttpClient();
                HttpGet httpGet = new HttpGet(url);
                try {
                    HttpResponse execute = client.execute(httpGet);
                    InputStream content = execute.getEntity().getContent();

                    BufferedReader buffer = new BufferedReader(
                            new InputStreamReader(content));
                    String s = "";
                    while ((s = buffer.readLine()) != null) {
                        response += s;
                    }

                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            return response;
        }

        @Override
        protected void onPostExecute(String result) {
            int sub = result.lastIndexOf('@', result.length() - 1);
            String s1 = result.substring(0, sub + 2);
            String temp[];
            String subarr[] = new String[100];
            ;
            Log.v("data = ", s1);
            // String s = s1.replace(";", " - ");
            final String arr[] = s1.split("@");

            for (int i = 0; i < arr.length; i++) {
                Log.v("arr" + i, arr[i] + "    " + arr.length);
            }

            for (int i = 0; i < arr.length - 1; i++)

            {
                temp = arr[i].split(";");
                subarr[(4 * i)] = temp[0];
                subarr[(4 * i) + 1] = temp[1];
                subarr[(4 * i) + 2] = temp[2];
                subarr[(4 * i) + 3] = temp[3];
                        }
        lv.setAdapter(new MyAdapter(ReadWebpageAsyncTask.this, subarr));
        }
    }
}

main.xml

            <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <EditText android:id="@+id/ed" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:hint="Search">
    </EditText>

    <ListView android:id="@+id/list"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    </ListView>

    </LinearLayout>

MyAdapter.java

   public class MyAdapter extends ArrayAdapter<String> {
    private final Context context;
    private final String[] values;

    private String item1, item2, item3, item0;
    int x = 0, i = 1, y = 1;

    public MyAdapter(Context context, String[] values) {
        super(context, R.layout.row, values);
        this.context = context;
        this.values = values;
    }

    @Override
    public String getItem(int position) {
        return values[position];
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {

        LayoutInflater inflater = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View rowView = inflater.inflate(R.layout.row, parent, false);
        TextView tv1 = (TextView) rowView.findViewById(R.id.col1);
        TextView tv2 = (TextView) rowView.findViewById(R.id.col2);
        TextView tv3 = (TextView) rowView.findViewById(R.id.col3);
        TextView tv4 = (TextView) rowView.findViewById(R.id.col4);

        if (y < 8) {
            item0 = getItem(position);
            Log.v("pos = ", "" + position);
            item1 = getItem(position + 1);
            item2 = getItem(position + 2);
            item3 = getItem(position + 3);

            tv1.setText(item0);
            tv2.setText(item1);
            tv3.setText(item2);
            tv4.setText(item3);

        } else {
            Log.v("y= ", "" + y);
        }
        return rowView;
    }
}

row.xml

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal" >

             <TextView android:id="@+id/col1"
             android:layout_width="150dip"
             android:layout_height="wrap_content"/>

             <TextView android:id="@+id/col2"
             android:layout_width="70dip"
             android:layout_height="wrap_content"/>

              <TextView android:id="@+id/col3"
             android:layout_width="70dip"
             android:layout_height="wrap_content"/>

              <TextView android:id="@+id/col4"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"/>

    </LinearLayout>

ANY HELP APPRICIATED

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

    Try using ListView

    Instead of TableLayout add ListView to your xml and place the content on table in new xml
    Create an adapter by extending ArrayAdapter and set this adapter on your listView.

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

Sidebar

Related Questions

I already tried references from similar question on SO, but hasn't got the appropriate
I am trying to remove all references to a table from a Crystal XI
I'm trying to return new data to jTable from my entity framework db context.
I know that similar questions were already asked, but still I do not see
I already tried getting the current URL of my UIWebView with: webview.request.URL . Unfortunately
I have already tried multiple ways. defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{ORGANIZATIONNAME=YourNameHere;}' Also i've tried
Is there anyone who has already tried to use the Microsoft Bing translator web
http://github.com/gabriel/yajl-objc I've already tried SBJSON, and while it works, I'm looking into alternative options
Eclipse does not highlight matching variables for me: I've already tried to change Mark
I want to change my rehosted activities look to: Already tried ActivityDesignerTheme Need 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.