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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T00:16:49+00:00 2026-06-14T00:16:49+00:00

I have an array String[] in Java, and must first encode/convert it into a

  • 0

I have an array String[] in Java, and must first encode/convert it into a String and then further in the code covert it back to the String[] array. The thing is that I can have any character in a string in String[] array so I must be very careful when encoding. And all the information necessary to decode it must be in the final string. I can not return a string and some other information in an extra variable.

My algorithm I have devised so far is to:

  1. Append all the strings next to each other, for example like this:
    String[] a = {“lala”, “exe”, “a”}
    into
    String b = “lalaexea”

  2. Append at the end of the string the lengths of all the strings from String[], separated from the main text by $ sign and then each length separated by a comma, so:

b = “lalaexea$4,3,1”

Then when converting it back, I would first read the lengths from behind and then based on them, the real strings.

But maybe there is an easier way?

Cheers!

  • 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-14T00:16:51+00:00Added an answer on June 14, 2026 at 12:16 am

    If you don’t wanna spend so much time with string operations you could use java serialization + commons codecs like this:

    public void stringArrayTest() throws IOException, ClassNotFoundException, DecoderException {
        String[] strs = new String[] {"test 1", "test 2", "test 3"};
        System.out.println(Arrays.toString(strs));
    
        // serialize
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        new ObjectOutputStream(out).writeObject(strs);
    
        // your string
        String yourString = new String(Hex.encodeHex(out.toByteArray()));
        System.out.println(yourString);
    
        // deserialize
        ByteArrayInputStream in = new ByteArrayInputStream(Hex.decodeHex(yourString.toCharArray()));
        System.out.println(Arrays.toString((String[]) new ObjectInputStream(in).readObject()));
    }
    

    This will return the following output:

    [test 1, test 2, test 3]
    aced0005757200135b4c6a6176612e6c616e672e537472696e673badd256e7e91d7b47020000787000000003740006746573742031740006746573742032740006746573742033
    [test 1, test 2, test 3]
    

    If you are using maven, you can use the following dependency for commons codec:

    <dependency>
        <groupId>commons-codec</groupId>
        <artifactId>commons-codec</artifactId>
        <version>1.2</version>
    </dependency>
    

    As suggested with base64 (two lines change):

    String yourString = new String(Base64.encodeBase64(out.toByteArray()));
    ByteArrayInputStream in = new ByteArrayInputStream(Base64.decodeBase64(yourString.getBytes()));
    

    In case of Base64 the result string is shorter, for the code exposed below:

    [test 1, test 2, test 3]
    rO0ABXVyABNbTGphdmEubGFuZy5TdHJpbmc7rdJW5+kde0cCAAB4cAAAAAN0AAZ0ZXN0IDF0AAZ0ZXN0IDJ0AAZ0ZXN0IDM=
    [test 1, test 2, test 3]
    

    Regarding the times for each approach, I perform 10^5 executions of each method and the result was as follows:

    • String manipulation: 156 ms
    • Hex: 376 ms
    • Base64: 379 ms

    Code used for test:

    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.ObjectOutputStream;
    import java.util.StringTokenizer;
    
    import org.apache.commons.codec.DecoderException;
    import org.apache.commons.codec.binary.Base64;
    import org.apache.commons.codec.binary.Hex;
    
    
    public class StringArrayRepresentationTest {
    
        public static void main(String[] args) throws IOException, ClassNotFoundException, DecoderException {
    
            String[] strs = new String[] {"test 1", "test 2", "test 3"};
    
    
            long t = System.currentTimeMillis();
            for (int i =0; i < 100000;i++) {
                stringManipulation(strs);
            }
            System.out.println("String manipulation: " + (System.currentTimeMillis() - t));
    
    
            t = System.currentTimeMillis();
            for (int i =0; i < 100000;i++) {
                testHex(strs);
            }
            System.out.println("Hex: " + (System.currentTimeMillis() - t));
    
    
            t = System.currentTimeMillis();
            for (int i =0; i < 100000;i++) {
                testBase64(strs);
            }
            System.out.println("Base64: " + (System.currentTimeMillis() - t));
        }
    
        public static void stringManipulation(String[] strs) {
            String result = serialize(strs);
            unserialize(result);
        }
    
        private static String[] unserialize(String result) {
            int sizesSplitPoint = result.toString().lastIndexOf('$');
            String sizes = result.substring(sizesSplitPoint+1);
            StringTokenizer st = new StringTokenizer(sizes, ";");
            String[] resultArray = new String[st.countTokens()];
    
            int i = 0;
            int lastPosition = 0;
            while (st.hasMoreTokens()) {
                String stringLengthStr = st.nextToken();
                int stringLength = Integer.parseInt(stringLengthStr);
                resultArray[i++] = result.substring(lastPosition, lastPosition + stringLength);
                lastPosition += stringLength;
            }
            return resultArray;
        }
    
        private static String serialize(String[] strs) {
            StringBuilder sizes = new StringBuilder("$");
            StringBuilder result = new StringBuilder();
    
            for (String str : strs) {
                if (sizes.length() != 1) {
                    sizes.append(';');
                }
                sizes.append(str.length());
                result.append(str);
            }
    
            result.append(sizes.toString());
            return result.toString();
        }
    
        public static void testBase64(String[] strs) throws IOException, ClassNotFoundException, DecoderException {
            // serialize
            ByteArrayOutputStream out = new ByteArrayOutputStream();
            new ObjectOutputStream(out).writeObject(strs);
    
            // your string
            String yourString = new String(Base64.encodeBase64(out.toByteArray()));
    
            // deserialize
            ByteArrayInputStream in = new ByteArrayInputStream(Base64.decodeBase64(yourString.getBytes()));
        }
    
        public static void testHex(String[] strs) throws IOException, ClassNotFoundException, DecoderException {
            // serialize
            ByteArrayOutputStream out = new ByteArrayOutputStream();
            new ObjectOutputStream(out).writeObject(strs);
    
            // your string
            String yourString = new String(Hex.encodeHex(out.toByteArray()));
    
            // deserialize
            ByteArrayInputStream in = new ByteArrayInputStream(Hex.decodeHex(yourString.toCharArray()));
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Java, I have a String and I want to encode it as a
I have this array: string[,] productData = new string[5,7]; I bind it to a
I have an array: string myArray={15,56,17-75,78,100-150,130} I want to filter myList by arrayElements .
An array is defined of assumed elements like I have array like String[] strArray
I have a string array: string[] authors = new string[3]; authors[0] = Charles Dickens;
i have an array below string stringArray = new stringArray[12]; stringArray[0] = 0,1; stringArray[1]
I have two array of array of string [[1,'Tambaú','Praça Santo António','Tambaú','12x0',2,'I','EM',12,6,5934,50], [2,'Beira Rio','Av. Bei
So at the moment I have a multidimensional array string[,] items = new string[100,
I have a string array of 3 different command line commands. Instead of writing
I have a string array in C# and I intend to copy it in

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.