“So konvertieren Sie ein Byte -Array in Python in Saite” Code-Antworten

Bytes zum String -Python

# utf-8 is used here because it is a very common encoding, but you
# need to use the encoding your data is actually in.
bytes = b'abcde'
bytes.decode("utf-8") 
'abcde'
Nutty Narwhal

So konvertieren Sie ein Byte -Array in Python in Saite

b = bytearray("test", encoding="utf-8")
# here test is encoded into a byte array 
str1 = bytes(b)
# the function bytes decodes it for us !!! 
print(str1)
#thank god for python
Amused Ant

Byte -Array in String konvertieren


byte[] byteArray1 = { 80, 65, 78, 75, 65, 74 };
String str = new String(byteArray1, 0, 3, StandardCharsets.UTF_8);
Bored Bison

Ähnliche Antworten wie “So konvertieren Sie ein Byte -Array in Python in Saite”

Fragen ähnlich wie “So konvertieren Sie ein Byte -Array in Python in Saite”

Weitere verwandte Antworten zu “So konvertieren Sie ein Byte -Array in Python in Saite” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen