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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:26:38+00:00 2026-05-26T00:26:38+00:00

for each time I do an action on y , get values 0 and

  • 0

for each time I do an action on y , get values 0 and 1 from table.

String[][] columns = {{"col1" , "col2"}};
int[] values = new int[columns.length];
String[] y = { "TEST", "BUG" };

    for (int j = 0; j < y.length; j++)
    {
      //do some actions
      //bellow I need to get at the same time col1 and col2      
      table.getVal(0, columns [0][j])) ?
    }

I need to get value of col1, col2 on y1 and on y2 ? how could I use columns in the getVal to have the expected values ?

thanks,

  • 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-26T00:26:39+00:00Added an answer on May 26, 2026 at 12:26 am
    class MatrixExampleDemo {
        public static void main(String[] args) {
            int array[][] = { { 1, 3, 5 }, { 2, 4, 6 } };
            System.out.println("Row size= " + array.length);
            System.out.println("Column size = " + array[1].length);
            outputArray(array);
        }
    
        public static void outputArray(int[][] array) {
            int rowSize = array.length;
            int columnSize = array[0].length;
    
            for (int i = 0; i <= 1; i++) {
                System.out.print("[");
                for (int j = 0; j <= 2; j++) {
                    System.out.print(" " + array[i][j]);
                }
                System.out.println(" ]");
            }
            System.out.println();
        }
    }
    

    Check this also……………….

    import java.lang.reflect.Array;
    import static java.lang.System.out;
    
    public class CreateMatrix {
        public static void main(String... args) {
            Object matrix = Array.newInstance(int.class, 2, 2);
            Object row0 = Array.get(matrix, 0);
            Object row1 = Array.get(matrix, 1);
    
            Array.setInt(row0, 0, 1);
            Array.setInt(row0, 1, 2);
            Array.setInt(row1, 0, 3);
            Array.setInt(row1, 1, 4);
    
            for (int i = 0; i < 2; i++)
                for (int j = 0; j < 2; j++)
                    out.format("matrix[%d][%d] = %d%n", i, j, ((int[][])matrix)[i][j]);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Each time I click on the map a new marker is placed on the
I am relatively new to C# and each time I begin to work on
I have an object called Time public class Time{ public int Hour {get;set;} public
Each time a python file is imported that contains a large quantity of static
Each time my webpage is loaded it runs a routine in the page_load event
I want to output the function name each time it is called, I can
How do I run a batch file each time windows boots up also I
It's a WiX MSI installer and each time I uninstall and reinstall it in
I'm getting this message each time I compile my project: RunIPhoneUnitTest.sh: line 92: 31389
The webViewDidFinishLoad message seems to be sent each time any object in the page

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.