How to send an ansi encoded file #78
Answered
by
AnWeber
smaktacular
asked this question in
Q&A
-
I tried to send a 7zip file, which is likely ANSI encoded (according to notepad++), using the < operator. The webservice could not properly decode it.
|
Beta Was this translation helpful? Give feedback.
Answered by
AnWeber
Oct 13, 2021
Replies: 1 comment
-
The NodeJS encodings are supported. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
smaktacular
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The NodeJS encodings are supported.
ansi
is not included, useascii
instead. However, when reading in using<
, no encoding is actually needed. Here the byte[] is processed directly.