Tagged Questions

Represents an array of bytes

learn more… | top users | synonyms (1)

124
votes
17answers
96k views

.NET String to byte Array C#

How do I convert a string to a byte array in .NET (C#)? Update: Also please explain why encoding should be taken into consideration. Can't I simply get what bytes the string has been stored in? Why ...
122
votes
19answers
112k views

How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?

This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa. Any takers?
40
votes
3answers
32k views

Convert byte array to Python string

I'm using this code to get standard output from an external program: >>> from subprocess import * >>> command_stdout = Popen(['ls', '-l'], stdout=PIPE).communicate()[0] The ...
37
votes
8answers
46k views

How to convert an Stream into a byte[] in C#?

Is there a simple way or method to convert an Stream into a byte[] in C#?
36
votes
9answers
47k views

Convert InputStream to byte[] in Java

I want to read an image and convert it to byte[] for my use. What should I do?
18
votes
4answers
3k views

How do you convert a string to a byte array in .Net

I have a string that I need to convert to the equivalent array of bytes in .NET. This ought to be easy but I am having a brain cramp.
16
votes
4answers
17k views

How to convert a byte array to its numeric value (Java)?

I have an 8 byte array and I want to convert it to its corresponding numeric value. e.g. byte[] by = new byte[8]; // the byte array is stored in 'by' // CONVERSION OPERATION // return the numeric ...
15
votes
7answers
7k views

Best way to read a large file into byte array in C#?

I have a web server which will read large binary files (several megs) into byte arrays. The server could be reading several files at the same time (different page requests) so I am looking for the ...
15
votes
7answers
9k views

byte[] to string in c#

I have a .NET byte[] that is loaded from a file that I happen to known contains UTF-8. In some debugging code, I need to convert it to a string. Is there a one liner that will do this? Under the ...
13
votes
4answers
28k views

Convert string to byte[]

We try to convert from string to Byte[] using the following Java code: String source = "0123456789"; byte[] byteArray = source.getBytes("UTF-16"); We get a byte array of length 22 bytes, we are not ...
12
votes
8answers
10k views

Append 2+ byte arrays in C#

Is there a best(see below) way to append two byte arrays in C#? Pretending I have complete control, I can make the first byte array sufficiently large to hold the second byte array at the end and use ...
11
votes
3answers
9k views

How to create byte array from HttpPostedFile

Hi I'm using an image component that has a FromBinary method. Wondering how do i convert my input stream into a byte array HttpPostedFile file = context.Request.Files[0]; byte[] ...
10
votes
2answers
278 views

C# - inserting bytes in the middle of binary file

I want to add some string in the middle of image metadata block. Under some specific marker. I have to do it on bytes level since .NET has no support for custom metadata fields. The block is built ...
10
votes
2answers
512 views

Heap fragmentation when using byte arrays

I have a C# 4.0 application (single producer/single consumer) which transfers huge amount of data in chunks. Although there's no new memory allocation I run out of memory after a while. I profiled ...
10
votes
5answers
10k views

Android - Playing mp3 from byte[]

I have my mp3 in byte[] (downloaded from service) and I would like to play it on my device similar to how you play files: MediaPlayer mp = new MediaPlayer(); mp.setDataSource(PATH_TO_FILE); ...
10
votes
34answers
2k views

Array Searching code challenge

Here's my (code golf) challenge: Take two arrays of bytes and determine if the second array is a substring of the first. If it is, output the index at which the contents of the second array appear in ...
9
votes
3answers
229 views

Get file name from byte array or Stream

Is possible get filename from byte array or stream? I do not want to save the file. I just want to retrieve the name.
9
votes
4answers
25k views

How to convert NSData to byte array in iPhone?

I want to convert NSData to a byte array, so I write the following code: NSData *data = [NSData dataWithContentsOfFile:filePath]; int len = [data length]; Byte byteData[len]; byteData = [data bytes]; ...
8
votes
2answers
302 views

How to read a file as a byte array in Scala

I can find tons of examples but they seem to either rely mostly on Java libraries or just read characters/lines/etc. I just want to read in some file and get a byte array with scala libraries - can ...
8
votes
3answers
147 views

An efficient way of making a large random bytearray

I need to create a large bytearry of a specific size but the size is not known prior to run time. The bytes need to be fairly random. The bytearray size may be as small as a few KBs but as large as ...
8
votes
3answers
2k views

Splitting a Byte array

Is it possible to get specific bytes from a byte array in java? I have a byte array: byte[] abc = new byte[512]; and i want to have 3 different byte arrays from this array. byte 0-127 byte ...
8
votes
2answers
858 views

Returning a byte string to ExternalInterface.call throws an error

I am working on my open source project Downloadify, and up until now it simply handles returning Strings in response to ExternalInterface.call commands. I am trying to put together a test case using ...
8
votes
11answers
13k views

Working with byte arrays in C#

I have a byte array that represents a complete TCP/IP packet. For clarification, the byte array is ordered like this: (IP Header - 20 bytes)(TCP Header - 20 bytes)(Payload - X bytes) I have a Parse ...
8
votes
11answers
13k views

Removing trailing nulls from byte array in C#

Ok, I am reading in dat files into a byte array. For some reason, the people who generate these files put about a half meg's worth of useless null bytes at the end of the file. Anybody know a quick ...
7
votes
5answers
3k views

Is there an equivalent to memcpy() in Java?

I have a byte[] and would like to copy it into another byte[]. Maybe I am showing my simple 'C' background here, but is there an equivalent to memcpy() on byte arrays in Java?
7
votes
3answers
10k views

Silverlight 4.0: How to convert byte[] to image?

public Image Base64ToImage(string base64String) { // Convert Base64 String to byte[] byte[] imageBytes = Convert.FromBase64String(base64String); MemoryStream ms = new ...
7
votes
7answers
5k views

converting byte array to double - c

I'm trying to get the numerical (double) value from a byte array of 16 elements, as follows: unsigned char input[16]; double output; ... double a = input[0]; distance = a; for (i=1;i<16;i++){ ...
7
votes
4answers
17k views

How Do I Insert A Byte[] Into an SQL Server VARBINARY column

I have a byte array highlighted below, how do I insert it into a SQL Server database Varbinary column? byte[] arraytoinsert = new byte[10]{0,1,2,3,4,5,6,7,8,9,10}; string sql = string.format ...
6
votes
7answers
145 views

c#: Convert an int into the smallest byte array it will fit into

I would like an elegant, efficient means of taking any unsigned integer and converting it into the smallest byte array it will fit into. For example: 250 = byte[1] 2000 = byte[2] 80000 = byte[3] ...
6
votes
2answers
742 views

How do I convert a Java byte array into a Scala byte array?

I am new to Scala and work currently on a project involving both Java and a Scala modules. Now I'd like to call a Scala method from Java using a parameter of type byte[]. The Scala method has the ...
6
votes
2answers
278 views

read byte array from C# that is written from Java

I am trying to write an Integer from C# and read it from Java. An integer is 4 bytes in both languages. However when I write it from C#, integer 1 is written in the following bytes 1000. Meaning the ...
6
votes
4answers
771 views

How to initialize a byte array in Clojure

What's the syntax for creating a byte array in Clojure initialized to a specified collection of values? Something like this, but that works... (byte-array [0 1 2 3])
6
votes
4answers
282 views

how do convert string to byte[] in C#

How do you get a byte array out of a string in C#? I would like to pass a string to this method.
6
votes
3answers
3k views

How can I access a byte array as shorts in Java

I have a an array of byte, size n, that really represents an array of short of size n/2. Before I write the array to a disk file I need to adjust the values by adding bias values stored in another ...
6
votes
4answers
9k views

How to play MP3 sound from buffer (ByteArray/Stream) in ActionScript 3?

So.. I have a buffer with MP3 data (If I would save this buffer and call it buffer.mp3 it would play, but in this situation I should not save it to file system). I have to play it, but I can not, what ...
6
votes
7answers
2k views

Convert BYTE buffer (0-255) to float buffer (0.0-1.0)

How can I convert a BYTE buffer (from 0 to 255) to a float buffer (from 0.0 to 1.0)? Of course there should be a relation between the two values, eg: 0 in byte buffer will be .0.f in float buffer, 128 ...
6
votes
4answers
10k views

Storing UUID as base64 String

I have been experimenting with using UUIDs as database keys. I want to take up the least amount of bytes as possible, while still keeping the UUID representation human readable. I think that I have ...
5
votes
3answers
112 views

Reading a C# byte array in Java

I'm transferring a file from a C# client to a Java server using TCP Sockets. On the C# client I convert the file to a byte array for transmission and send it using a NetworkStream. On the Java ...
5
votes
3answers
309 views

Determine if a byte[] is a pdf file

Is there any way of checking if a byte[] is a pdf without opening? I have some code to display a list of byte[] as pdf thumbnails. I previously knew all the byte[] were pdf's because we filtered the ...
5
votes
5answers
590 views

Append Data to Byte Array

Currently, I am reading data from a binary file (File.ReadAllBytes), converting this byte array into a string and appending data onto this string. Lastly, I am converting the string back into a byte ...
5
votes
2answers
536 views

BufferedImage to Bytes Java

I am trying to get the bytearray from a bufferedImage but the length of my ByteArrayOutputstream is always zero and I get no bytes. This is what I am doing any ideas why this is not working ...
5
votes
3answers
1k views

C# Byte[] Byte array to Unicode string

I need very fast conversion from byte array to string. Byte array is Unicode string.
5
votes
5answers
3k views

Scala: InputStream to Array[Byte]

With Scala, what is the best way to read from an InputStream to a bytearray? I can see that you can convert an InputStream to char array Source.fromInputStream(is).toArray()
5
votes
5answers
475 views

PInvoke, pointers and array copy

We're building an application on c#, .net 4.0, on Win7 x64, targeting x32. We are using a 3rd party library in our application. We understand that this library is written using C++. However, to let ...
5
votes
6answers
987 views

Using LINQ to search a byte array for all subarrays that start/stop with certain byte

I'm dealing with a COM port application and we have a defined variable-length packet structure that I'm talking to a micro-controller with. The packet has delimiters for the start and stop bytes. ...
5
votes
4answers
996 views

Convert object to byte array in c#

I want to convert object value to byte array in c#. EX: step 1. Input : 2200 step 2. After converting Byte : 0898 step 3. take first byte(08) Output: 08 thanks
5
votes
3answers
2k views

Save byte[] into a SQL Server database from C#

How can I save a byte[] array into a SQL Server database? This byte[] contains a HashAlgorithm value. The data is needed again for later use. So converting it and NOT getting it back in its original ...
5
votes
5answers
988 views

How to fill byte array with junk?

I am using this: byte[] buffer = new byte[10240]; As I understand this initialize the buffer array of 10kb filled with 0s. Whats the fastest way to fill this array (or initialize it) with junk ...
5
votes
5answers
2k views

Convert 2 bytes to a number

I have a control that has a byte array in it. Every now and then there are two bytes that tell me some info about number of future items in the array. So as an example I could have: ... ... Item ...
5
votes
1answer
2k views

C#: Convert Byte array into a float

I have a 4 byte array byte[] source = new byte[4]; Now I wanted to convert this source into a 4-byte float value... Can anyone tell me how to do this...

1 2 3 4 5 20