GithubHelp home page GithubHelp logo

Comments (5)

phax avatar phax commented on July 16, 2024

You don't need to Base64 encode yourself. In the code you provide the source binary content, and the Base64 encoding happens automatically in the background

from ph-ubl.

ssdf34 avatar ssdf34 commented on July 16, 2024

does Base64 encode support StandardCharsets.UTF_8
because I encode Arabic char to hex then I encode it to Base64 UTF_8

from ph-ubl.

ssdf34 avatar ssdf34 commented on July 16, 2024

It's suppose when I enter 012a416264756c6c61682048617373616e20416c2d4e617373657220476f6c6420436f72706f726174696f6e020F3331303132323339333530303030330314323032322d30342d32355431353a33303a30305a0407313030302e303005063135302e3030
it gave me
ASpBYmR1bGxhaCBIYXNzYW4gQWwtTmFzc2VyIEdvbGQgQ29ycG9yYXRpb24CDzMxMDEyMjM5MzUwMDAwMwMUMjAyMi0wNC0yNVQxNTozMDowMFoEBzEwMDAuMDAFBjE1MC4wMA==

But unfortunately it gave me another result

from ph-ubl.

ssdf34 avatar ssdf34 commented on July 16, 2024

thinks I solve the issue

String originalInput="012a416264756c6c61682048617373616e20416c2d4e617373657220476f6c6420436f72706f726174696f6e020F3331303132323339333530303030330314323032322d30342d32355431353a33303a30305a0407313030302e303005063135302e3030";
HexBinaryAdapter adapter = new HexBinaryAdapter();
byte[] bytes = adapter.unmarshal(originalInput);
Emdb3.setValue(bytes );

the output is matched
ASpBYmR1bGxhaCBIYXNzYW4gQWwtTmFzc2VyIEdvbGQgQ29ycG9yYXRpb24CDzMxMDEyMjM5MzUwMDAwMwMUMjAyMi0wNC0yNVQxNTozMDowMFoEBzEwMDAuMDAFBjE1MC4wMA==

from ph-ubl.

phax avatar phax commented on July 16, 2024

Okay if the original String is already encoded (as in hex encoding in your example), then this needs to be considered separately. This is independent of Base 64 :)

Assume I have a String that contains German Umlauts, I need to explicitly use the character set when calling getBytes() as in this (untested) example:

String s = "Test äöü";
byte[] b = s.getBytes (StandardCharsets.UTF_8);
EmbeddedDocumentBinaryObjectType Emdb3 = new EmbeddedDocumentBinaryObjectType();
Emdb3.setMimeCode("text/plain");
Emdb3.setValue(b);

How you get your raw "byte[]" is up to you and you need to know what to do, And the difference between char and byte might be confusing when dealing with these issues for the first time.....

from ph-ubl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.