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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:55:14+00:00 2026-05-23T17:55:14+00:00

I am working on a tool that writes java files. At a given point

  • 0

I am working on a tool that writes java files. At a given point I have to write an array declaration. I have implemented the following methods:

  public static String arrayToCode(Long[] arr, String arrName) {
    StringBuilder sb = new StringBuilder();

    sb.append("Long[]" + arrName + " = { ");
    for (int i = 0; i < arr.length; i++) {
      sb.append(arr[i] + "L, ");
    }
    sb.append("};");

    return sb.toString();
  }

  public static String arrayToCode(String[] arr, String arrName) {
    StringBuilder sb = new StringBuilder();

    sb.append("String[]" + arrName + " = { ");
    for (int i = 0; i < arr.length; i++) {
      sb.append(arr[i] + "L, ");
    }
    sb.append("};");

    return sb.toString();
  }

  public static String arrayToCode(Double[] arr, String arrName) {
    StringBuilder sb = new StringBuilder();

    sb.append("Double[]" + arrName + " = { ");
    for (int i = 0; i < arr.length; i++) {
      sb.append(arr[i] + "L, ");
    }
    sb.append("};");

    return sb.toString();
  }

However, I would like to make a single and generic method for all sorts of arrays, the thing is that I don’t know how to handle the type with generics, i.e. how would I know it is a Long, String or Double array?

  • 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-23T17:55:15+00:00Added an answer on May 23, 2026 at 5:55 pm

    You can accept an Object[] and then use getClass() to figure out what type it really is.

    public static String arrayToCode(Object[]  arr, String arrName) {
        String arrayTypeText = getArrayType(arr);
        sb.append(arrayTypeText + " " + arrName + ...);
        //...
    }
    
    
    private String getArrayType(Object[] arr) {
        Class<?> clazz = arr.getClass();
        if ( clazz == Double[].class ) {
            return "Double[]";
        } else if (...) {
        }
    }
    

    An alternative implementation of getArrayType() might be

    private String getArrayType(Object[] arr) {
        return arr.getClass().getComponentType().getSimpleName() + "[]";
    }
    

    If you’re really trying to generate code you probably should just use the fully qualified name, in which case you can replace getSimpleName() above with getName() (which will return java.lang.Long, e.g.)

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

Sidebar

Related Questions

I am working with an open-source UNIX tool that is implemented in C++, and
I'm working on a simple tool that transfers files to a hard-coded location with
I'm working on a tool that will generate the source code for an interface
I'm working on building a development tool that is written in JavaScript. This will
I'm currently working on a JavaScript tool that, during the course of its execution,
I'm working on a tool which would need to communitacte: send and recieve files
I'm working on a rather intensive rewrite and given a choice of the following
I am working on a tool that will test the server of a Silverlight
I'm working on a tool that needs to send IRC messages to an internal
I'm currently working on a procedural planet generation tool that works by taking a

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.