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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:46:26+00:00 2026-05-27T06:46:26+00:00

I have a string cityName which I decoded into bytes as follows: byte[] cityBytes

  • 0

I have a string cityName which I decoded into bytes as follows:

byte[] cityBytes = cityName.getBytes("UTF-8");

…and stored the bytes somewhere. When I retrieve those bytes, how can I decode them back into a string?

  • 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-27T06:46:27+00:00Added an answer on May 27, 2026 at 6:46 am

    Use the String(byte[], Charset) or String(byte[], String) constructor.

    byte[] rawBytes = /* whatevs */
    
    try
    {
        String decoded = new String(rawBytes, Charset.forName("UTF-8"));
        // or
        String decoded = new String(rawBytes, "UTF-8");
        // best, if you're using Java 7 (thanks to @ColinD):
        String decoded = new String(rawBytes, StandardCharsets.UTF_8);
    }
    catch (UnsupportedEncodingException e)
    {
        // see http://stackoverflow.com/a/6030187/139010
        throw new AssertionError("UTF-8 not supported");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have string stored in python variables, and i am outputting a html that
I have string of 9 letters. string myString = 123987898; I want to retrieve
I have a Dictionary> in c# Dictionary<string,List<string>> l_dictRawData; which contains the values are :
I have string in which it has Date of type- 'mm-dd-yyyy'; I have to
I have string which is of format: ;1=2011-10-23T16:16:53+0530;2=2011-10-23T16:16:53+0530;3=2011-10-23T16:16:53+0530;4=2011-10-23T16:16:53+0530; I have written following code to
If I have a string in the following format: location-cityName.xml how do I extract
i have string that contains apostrophe and comma's and when i execute insert into
I have string like this /c SomeText\MoreText Some Text\More Text\Lol SomeText I want to
I have string that I want to chop to array of substrings of given
I have string like \LESSING\root\cimv2:Win32_UserAccount.Domain=LESSING,Name=Admin How to convert it to LESSING\Admin using Framework?

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.