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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T04:16:08+00:00 2026-06-05T04:16:08+00:00

I have a map and trying to convert that to 2 dimension array. For

  • 0

I have a map and trying to convert that to 2 dimension array. For this I am converting the values of Map to list and then trying to convert to 2 dimensional array.

My code is

try {
List list = new ArrayList(layoutMap.values());
int listSize = list.size();
ArrayList[][] layoutList = new ArrayList[listSize][];
for(int i = 0; i < listSize; i++){
    List sublist = (ArrayList) list.get(i);
    int subListSize = sublist.size();
    layoutList[i] = new ArrayList[subListSize];
    for (int j = 0; j < subListSize; j++) {
    layoutList[i][j] =  (ArrayList) sublist.get(j);
    }
} 
} catch (Exception e) {
log.error("@layoutMapDetails () :", e);
}

when i do this I am getting class cast exception com.pojo.layout.LayoutDetails cannot be cast to java.util.ArrayList Is there any way to solve this. Is the conversion of List to 2-dimensional array right..? Here the layoutMap is Map<Integer, List>

  • 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-05T04:16:10+00:00Added an answer on June 5, 2026 at 4:16 am
    final Object[][] result = new Object[map.size()][2];
    
    final Iterator<?> iter = map.entrySet().iterator();
    
    int ii = 0;
    while(iter.hasNext()){
        final Map.Entry<?, ?> mapping = (Map.Entry<?, ?>) iter.next();
    
        result[ii][0] = mapping.getKey();
        result[ii][1] = mapping.getValue();
    
        ii++;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have this map I am trying to configure so that it takes
I have an array of Deferred objects, which I'm trying to map to their
I have this map I'm creating in Flash. You click on a state, then
I'm trying to convert a method that I have written in C# to Java
I have the following stored procedure that I am trying to convert to a
I have some C# code that decodes map paths encoded using Google's polyline algorithm
I have a map reduce job I am trying to run on a relatively
I am trying to build a website and I want to have a map
I am trying to display the map i have created using the Iterator. The
I'm trying to map a Dictionary containing Lists. I have the following set of

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.