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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:46:38+00:00 2026-05-15T19:46:38+00:00

prehistory: Java regular expression for binary string I can extract a substring with binary

  • 0

prehistory:
Java regular expression for binary string

I can extract a substring with binary data I need, but when I use

   String s = matcher.group(1);

It seems that data is spoiled,
to be exact spoiled are only those chars that belong to extended ASCII table, probably from 128 to 255. Other chars are kept untouched, but some are corrupted.
What I basically mean, is that I need to transform this ” s ” string into byte array, but this:
String s2 = new String(s.getBytes(), “US-ASCII”)

or this

String s2 = new String(s.getBytes(), "ISO-8859-1") 

and later,

 fileOutputStream.write(s2.getBytes())

replaces all chars from extended ASCII table to ” ? “, while others like \0 or ‘A’ are kept uncorrupted.

How to interpret a String as plain [0-255] ascii binary symbols ?

PS
I solved it, one should use

    String encoding = "ISO-8859-1";

to encode/decode byte arrays, and everything works perfectly.

  • 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-15T19:46:39+00:00Added an answer on May 15, 2026 at 7:46 pm

    What I basically mean, is that I need to transform this ” s ” string into byte array

    Answering this directly:

    byte[] array = Charset.forName("utf-8").encode(CharBuffer.wrap(s)).array();
    

    Edit:
    String has a helper function added that does the same thing as above with a bit less code:

    byte[] array = s.getBytes(Charset.forName("utf-8"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In the python interpreter we can use readline.parse_and_bind('tab: complete') to enable tab completion Is
I'm working on a few ComboBoxes that need a select property as the top
I'm new to OS X programming but generally liking it. I have the following
can somebody tell me where I am making mistake in the converting: C: typedef
I can successfully compute the 200 day moving average for one ticker using a
so I'm trying to do a full join on MS Access 2003 but just
I had posted other questions relating to this problem, but haven't had any responses
I'm sure I'm going to feel stupid after seeing the answer, but I keep
I use standard tips for customizing interactive Python session: $ cat ~/.bashrc export PYTHONSTARTUP=~/.pystartup
I am having issues with a query, I want it to rank the result

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.