Tagged Questions
0
votes
0answers
41 views
My ByteArray to String Code doesn't work with Android
For normal Java developing, I use this code to convert a Byte Array to a String
StringBuffer sb = new StringBuffer();
for (int x = 0; x < uid.length; x++){
if (x > 0) {
...
0
votes
2answers
55 views
Bytes to String or String to Bytes?
I have read some of the examples here but I am such a novice I don't understand some of them and others don't seem to work(probably because I'm such a novice but...
import urllib.request
import re
...
0
votes
3answers
50 views
Convert from byte array to string hex c# [duplicate]
Suppose I have byte array.
byte[] a = new byte[] {0x33,0x43,0xFE};
I want to convert it to string.
string str = convert(a);
My str should look like this:
"33 43 FE"
How can I do ...
-1
votes
2answers
67 views
java byte[] and String conversion
I have some trouble in encrypting and decrypting some AES messages because of byte[]-String conversions...I find quite interesting how a[9]!=c[9] (saw the difference when debugging)
try {
...
5
votes
2answers
51 views
Java byte[] to/from String conversion
Why does this junit test fail?
import org.junit.Assert;
import org.junit.Test;
import java.io.UnsupportedEncodingException;
public class TestBytes {
@Test
public void testBytes() throws ...
2
votes
2answers
67 views
Convert string of 0s and 1s to byte in Python
I have a string representation of binary integers and I need bytes having the exact bit structure, to send over the sockets.
For e.g. if I have a string of length 16 : 0000111100001010 then I need 2 ...
-7
votes
0answers
28 views
String to byte[] and byte[] to String doesn't work [closed]
I am learning about java PipedInputStream and PipedOutputStream.
I have written myself a program to test the pipe functionality.
The output of the code below is:
16
32
[B@11671b2
However I ...
0
votes
1answer
43 views
Which is the best charset to pass data to php?
In my Java App, I want to pass individual bytes of information to a php script via POST. In order to do that, I convert the byte[] into a String.
Now, which charset is best for this operation? I want ...
0
votes
2answers
104 views
Converting string to byte array in C#
I'm quite new to C#. I'm converting something from VB into C#. Having a problem with the syntax of this statement:
if ((searchResult.Properties["user"].Count > 0))
{
...
0
votes
1answer
48 views
How to Reduce the size of a speccific format string?
I have designed a 2 Pass Assembler for my project. The output is in Hexadecimal form i.e. 15 is 0F.
I am working with ComPort and to send "0F" over the line it should be sent as String.
But the ...
0
votes
3answers
69 views
How to append a byte to a string in Java?
I have this operation I need to perform where I need to append a byte such as 0x10 to some String in Java. I was wondering how I could go about doing this?
For example:
String someString = "HELLO ...
0
votes
1answer
80 views
Best efficient way to write a big string of bytes to file
I am writing a string of bits to a file like this :
//String to ByteArray
byte[] b = new BigInteger(encodedFile.toString(), 2).toByteArray();
//Writing
FileOutputStream fos = new ...
3
votes
1answer
79 views
Python detect string byte encoding
I've got about 1000 filenames read by os.listdir()
some of them are encoded 'utf-8' and some are 'cp1252'.
I want to decode all of them to unicode for further processing in my script. Is there a way ...
0
votes
2answers
114 views
byte[] to String and String to byte[]
I have a small problem to change the type from byte[] to String and then from String to byte[]. When I use my code, it returns the RSA error "Too much data for rsa block". But when I use the original ...
-1
votes
1answer
70 views
Issue with string encoding [closed]
This is my code, I am having trouble with byte encoding. When I get the plaintext string, and hash it, and try to print out the result, it gets messed up. For example, for plaintext = "hi", it prints ...
0
votes
2answers
77 views
Get the Value of a byte with Javascript
I'm not sure if the title makes any sense, but here is what I need.
This is my byte: ���������ˇ�����0F*E��ù� �
I have already managed to get the values of this byte with this php snippet:
...
1
vote
2answers
78 views
Converting string to raw bytes
I wrote a program that works with raw bytes (I don't know if this is the right name!) but the user will input the data as plain strings.
How to convert them?
I've tried wih a method but it returns a ...
0
votes
1answer
76 views
C++/CX - How to convert a number stored as String^ to byte?
I have a C++/CX Windows 8 application and I need to do something similar to the following conversion:
String^ foo = "32";
byte bar = <the numeric value of foo>
How can I convert the number ...
0
votes
5answers
120 views
Java - Converting bytes in to string and comparing against another [duplicate]
I'm just starting to learn Java, and for my first challenge I am trying to read the ID3v1 tag from an MP3. I read the last 128 bytes of an MP3 in to a byte array and split it up from there. To check I ...
1
vote
3answers
99 views
How to read fixed length character using BufferReader or other method?
If I use BufferReader to read a line, I can get a string of a line.
The code is this :
FileInputStream fs = new FileInputStream("E:\\tmp\\aaa.txt");
BufferedReader br = new BufferedReader(new ...
0
votes
4answers
105 views
byte[] to string and back to byte[]
I have a problem with interpreting a file. The file is builded as follow:
"name"-@-"date"-@-"author"-@-"signature"
The signature is a byte array. When i read the file back in i parse it to ...
1
vote
3answers
115 views
How to print string first n bytes when the string's length is greater than n?
So I have a string that has a certain amount of bytes (or length). I say bytes because there is no NULL terminator at the end of the string. Though, I know how long the string is. Normally, as we all ...
1
vote
0answers
95 views
Convert cv::mat to string of bytes in OpenCV
I need to implement a function which takes an image and return a file say a text file containing a string of bytes.
What I have done yet is :
#include <cv.h>
#include <highgui.h>
using ...
1
vote
1answer
178 views
assign byte to string delphi xe2
I have code
procedure _UUEncode;
var
Sg: string;
Triple: string[3];
begin
...
Byte(Sg[1]) := Byte(Sg[1]) + Length(Triple); // <- on this line I got error
...
end;
I got "left sign ...
0
votes
5answers
94 views
How to convert String to byte
I am trying to convert the string to byte, but I become NumberFormatException.
String s = "SYNC";
Byte b = Byte.valueOf(s);
System.out.println(b);
1
vote
4answers
131 views
How to convert and add a String to List<byte>?
I have a string which I want to convert into bytes (using the encoding.getbytes() function properly) and then the bytes that result from the conversion, add them to a List.
How can I do this? I've ...
0
votes
2answers
250 views
Convert byte array to string with equivalent number of bytes
Is it possible to convert a byte array to a string but where the length of the string is exactly the same length as the number of bytes in the array? If I use the following:
byte[] data; // Fill it ...
1
vote
3answers
190 views
string as bytes python3
let say i got string(that is supposed to be a bytes):
"b'YzJGNVltYzJGNVltOTBlbk5oZVdKdmRIcHpZWGxpYjNSNmMyRjVZbTkwZW5OaGVXSnZkSHB6WVhsaWIzUjZjMkY1WW05MGVnOTBlblJsYzNRPXNheWJvdHo='"
and i want to ...
0
votes
1answer
124 views
Regular expression hex bytes in string
I am trying to validate the input of a LineEdit widget in Qt. I am using regular expressions for the first time so I could use some help. I want to allow 1 to 32 hex bytes separated by a space, for ...
2
votes
1answer
95 views
Java String to Byte Array Changes on Each Run
I'm having a strange problem with converting a string to a byte array to hash it. Right now, my code is something like this:
String textToHash = "test";
MessageDigest messageDigest = ...
1
vote
2answers
222 views
Java convert string bytes to readable string [duplicate]
Possible Duplicate:
Java Byte Array to String to Byte Array
I have a method called READ() that accept a String parameter. This string is already have been converted into bytes. All I want ...
0
votes
1answer
80 views
Keep Track of Number of Bytes Read
I would like to implement a command line progress bar for one of my programs IN PYTHON which reads text from a file line by line.
I can implement the progress scale in one of two ways:
(number ...
-1
votes
1answer
147 views
C++ String of Bytes convert to byte datatype and count bytes
As the title says I try to convert to byte data type a C++ String of Bytes and count bytes.
The string I get from textbox will contain a series of one byte hexadecimal numbers, but I need to send it ...
5
votes
4answers
492 views
What is the best way to convert byte array to string?
I need to read [100]byte to transfer a bunch of string data.
Because not all the string is precisely 100 long, the remaining part of the byte array are padded with 0s.
If I tansfer [100]byte to ...
3
votes
4answers
511 views
Converting string to byte[] creates zero character
In this convert function
public static byte[] GetBytes(string str)
{
byte[] bytes = new byte[str.Length * sizeof(char)];
System.Buffer.BlockCopy(str.ToCharArray(), 0, bytes, 0, bytes.Length);
...
2
votes
3answers
286 views
converting alphanumeric string to byte in java? [duplicate]
Possible Duplicate:
Convert a hex string to a byte in Java
Here, I need to convert alphanumeric String to byte value ,for example:
String str ="1b" to byte value.I tried by using ...
4
votes
1answer
182 views
How to convert a set variable to/from byte/file/inputstream/string?
I am trying to store a set containing some data into a blob (in cloud storage like Rackspace CloudFiles or Amazon S3)
Now, this is the code used to actually store the set variable into the cloud ...
0
votes
1answer
78 views
How to convert between bytes and strings in Python 3?
This is a Python 101 type question, but it had me baffled for a while when I tried to use a package that seemed to convert my string input into bytes.
As you will see below I found the answer for ...
0
votes
1answer
74 views
why this single charactor has 122 byte?
I meet a stange charactor,It has 122 bytes.
<script>
var pig ...
0
votes
2answers
133 views
printing byte chars in C
i have an input c-string that seems to be in bytes or octets.
when i print it by doing
printf("this is string[%s]\n", inputCstr);
it doesn't print the whole thing.
so i tried to loop it like
for ...
1
vote
1answer
215 views
Netty large string, not enough readable bytes
Im trying to write a 'large' string (986 chars) from my server to my client, but i get the following error after reading 16 chars:
not enough readable bytes - need 2, maximum is 0.
It works ...
1
vote
2answers
407 views
c# convert byte to string and write to txt file
How can i convert for example byte[] b = new byte[1]; b[1]=255 to string ?
I need a string variable with the value "255" string text= "255";and then store it in a text file?
1
vote
1answer
75 views
Java getting bytes of clipboard
So I want to get the actual bytes of the user's clipboard. I can't find a way of doing this, all I find is how to get the clipboard as a String.
To get the clipboard as a String, I'd have to do ...
0
votes
2answers
142 views
Hexadecimal value of bytes in c++ to a string (equivalent of od -x in linux)?
My goal is to write the more concise/effective function to convert a value to an hexadecimal string AS it is stored in memory (so the printed value will depends on the system endianness for example) :
...
2
votes
2answers
222 views
2 byte short into 2 byte string in C?
Any way to convert a a 2 byte short (normal short) into just a 2 byte string (char*) after using htons on that short. The thing is that the htons method returns an int (4 bytes), how do I put it into ...
0
votes
1answer
141 views
How to put a string into a position in a byte array in Java?
I've pretty much reached a brick wall and could use some advice on how to proceed with a project for one of my courses. Here's code I'm trying to get to work:
for(i = 0; i < sendData.length; i++){
...
1
vote
3answers
596 views
Converting byte[] to String and back c#
I’m trying to convert a byte[] to a string and back using Encoding.Unicode.
Sometimes Encoding.Unicode is able to convert the byte[] to a string and sometimes the output is != the input.
What am I ...
5
votes
2answers
190 views
C++ Data-Url as String to const byte *
I have a Data-Url of a file as std:string.
The base64 encoded data has to be decoded and then be passed to this function:
open (const byte * data, long size)
So first i extract the encoded data
...
2
votes
4answers
570 views
Java String constructed from byte array has bad length
I'm having a difficult time understanding the rationale behind the semantics of the Java String(byte[]) constructors (Java 6). The length of the resulting String object is usually wrong. Perhaps ...
2
votes
4answers
161 views
Changing String to byte[] - without actual converting
I have String:
String str = "KITTEN";
And I would like to make a byte[] from it, but just:
byte[] mybyte = new byte[] { 'K', 'I', 'T', 'T', 'E', 'N'}
Anyone knows how to change String to that ...



