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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T19:51:50+00:00 2026-05-29T19:51:50+00:00

I have to read a file (existing format not under my control) that contains

  • 0

I have to read a file (existing format not under my control) that contains an XML document and encoded data. This file unfortunately includes MQ-related data around it including hex zeros (end of files).

So, using Java, how can I read this file, stripping or ignoring the “garbage” I don’t need to get at the XML and encoded data. I believe an acceptable solution is to just leave out the hex zeros (are there other values that will stop my reading?) since I don’t need the MQ information (RFH header) anyway and the counts are meaningless for my purposes.

I have searched a lot and only find really heinous complicated “solutions”. There must be a better way…

  • 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-29T19:51:53+00:00Added an answer on May 29, 2026 at 7:51 pm

    What worked was to pull out the XML documents – Groovy code:

        public static final String REQUEST_XML          = "<Request>";
        public static final String REQUEST_END_XML      = "</Request>";
        /**
     * @param xmlMessage
     * @return 1-N EncodedRequests for those I contain
     */
    private void extractRequests( String xmlMessage ) {
        int start = xmlMessage.indexOf(REQUEST_XML);
        int end = xmlMessage.indexOf(REQUEST_END_XML);
        end += REQUEST_END_XML.length();
        while( start >= 0 ) {   //each <Request>
            requests.add(new EncodedRequest(xmlMessage.substring(start,end)));
            start = xmlMessage.indexOf(REQUEST_XML, end);
            end = xmlMessage.indexOf(REQUEST_END_XML, start);
            end += REQUEST_END_XML.length();
        }
    }
    

    and then decode the base64 portion:

        public String getDecodedContents() {
        if( decodedContents == null ) {
            byte[] decoded = Base64.decodeBase64(getEncodedContents().getBytes());
            String newString = new String(decoded);
            decodedContents = newString;
            decodedContents = decodedContents.replace('\r','\t');
        }
        return decodedContents;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have to read/write an XML file that stores its data as bit masked
I have an existing data format that has portions of it encrypted in what
I have an XML file that contains an illegal character, I am iterating through
I have read a file into a String. The file contains various names, one
I have read that CURL is way too fast than File Get Contents and
When I using the following code to read file: lines=file(data.txt).read().split(\n) I have the following
I have to read a file in the BUILD method and I want to
My current situation is: I have to read a file and put the contents
I need to create an excel file via C#. I have read a few
I am having following issue with reading binary file in C. I have read

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.