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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:15:38+00:00 2026-06-04T08:15:38+00:00

I am trying to convert a string of numbers (e.g 34 4 5 6

  • 0

I am trying to convert a string of numbers (e.g “34 4 5 6 67 45 34”) into an array of shorts.

I have written the following code :

//Split the string and then build a short array with the values.
            String[] tabOfShortString = finalString.split(" ");
            int length = tabOfShortString.length;
            System.out.println("Length of float string is" + length);
            short[] shortsArray = new short[length];
            for (int l = 0; l < length; l++) {
                //System.out.println("l is currently "+l);
                Short res = new Short(tabOfShortString[l]);
                System.out.println("Indice Short Value is " + res);
                shortsArray[l] = res;
            }

The problem is that the finished array (shortsArray) is not accurately capturing my string. Can anyone spot what may be wrong ?

Thank you.

  • 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-04T08:15:39+00:00Added an answer on June 4, 2026 at 8:15 am

    Your solution works for me, this is what I have:

    public static short[] toShorts(String finalString) {
        String[] tabOfShortString = finalString.split(" ");
        int length = tabOfShortString.length;
        System.out.println("Length of float string is" + length);
        short[] shortsArray = new short[length];
        for (int l = 0; l < length; l++) {
            //System.out.println("l is currently "+l);
            Short res = new Short(tabOfShortString[l]);
            System.out.println("Indice Short Value is " + res);
            shortsArray[l] = res;
        }
    
        return shortsArray;
    
    }
    

    Then I call this:

    short[] qux = toShorts("34 4 5 6 67 45 34");
    

    And the output of qux is:

    [34, 4, 5, 6, 67, 45, 34]
    

    I do not see a problem?

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

Sidebar

Related Questions

I'm trying to convert a string of numbers into a 'packed hex' format. For
So I'm trying some code out to convert numbers into strings. However, I noticed
I'm trying to convert a string of numbers, entered by the user, into a
I am using this code for on android just trying to convert string to
I am trying to convert a string value into a name of an attribute
I am trying to convert a string to a double. The code is very
I'm trying to convert the String \something\ into the String \\something\\ using replaceAll ,
I'm trying to convert this string : $json = '[{a:1,b:2,c:3,d:4,e:5}, {a:6,b:7,c:8,d:9,e:10}]'; To an array
I'm trying to convert a string of characters into each characters decimal form and
i'm trying to convert numbers into localized strings. For integers and money values it's

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.