1
vote
3answers
68 views
bytes vs bytearray in Python 2.6 and 3
I'm experimenting with bytes vs bytearray in Python 2.6. I don't understand the reason for some differences.
A bytes iterator returns strings:
for i in bytes(b"hi"):
print(ty …
0
votes
2answers
67 views
bytearray to image asp.net
I have a byte array representing a picture. I want to present the picture stored in that byte array in an aspx page. Can I do it using an image or imagemap control? If so - how? If …
0
votes
2answers
19 views
Java Project Modules - use InputStream/OutputStream or .tmpFile/byte[]
Hi all,
I found myself passing InputStream/OutputStream objects around my application modules.
I'm wondering if it's better to - save the content to disk and pass something like …
2
votes
4answers
49 views
Copy bytes in memory to an Array in VB.NET
Hello,
unfortunately I cannot resort to C# in my current project, so I'll have to solve this without the unsafe keyword.
I've got a bitmap, and I need to access the pixels and ch …
-4
votes
2answers
83 views
byte array to hex string conversion in c language [closed]
If this is the char array has the hex values
char b[] = {0xf1, 0x0d, 0x3c, 0x44};
we have to convert to string like below as
char *string = "F10D3C44".
please provide the …
0
votes
2answers
91 views
Search byte[] for pattern C#
_documentContent contains the whole document as html view source.
patternToFind contains text to be searched in _documentContent.
Code snippet below works fine if language is Engl …
0
votes
2answers
123 views
byte array to string
Hello guys!
have small problem, and would very much appreciate help :)
I should convert byte array to string and get this output string: “[0, 0, 0, 0]”
After that another method …
0
votes
4answers
175 views
How to Convert Byte* to std::string in C++?
I have Byte *, want to convert it to std::string. Can you please tell me the safest way to do this?
0
votes
1answer
30 views
Usings SAFEARRAYs with VB.Net
I'm using the BusinessObjects SDK to interact with objects in its repository.
The File Class has methods for sending/receiving (CopyTo and Overwrite) binary data to/from the File …
0
votes
5answers
124 views
In C#, how can I know the file type from a byte[]?
Hi!
I have a byte array filled from a file uploaded. But, in another part of the code, I need to know this file type uploaded from the byte[] so I can render the correct content-t …
0
votes
2answers
100 views
Can I construct a BigInt with any byte array (Scala)?
I'm trying to represent the result of an MD5 hash in the shortest possible string. It seems a waste to just turn it into a hex string and let G through Z go to waste.
One idea I h …
1
vote
1answer
199 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, …
0
votes
1answer
36 views
Flex Alchemy: Returning a ByteArray from C function
I am using Flex's Alchemy library to generate SWC's out of C files. I have a byte array (unsigned char buffer[size]) in the c-layer that I'd like to return to the ActionScript laye …
8
votes
35answers
1k 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 sec …
0
votes
1answer
102 views
Resizing Image from a decoded ByteArray
I am trying to display a bytearray as a resized image. The Image is displaying correctly, but the sizing is off. Let me explain.
First I have the image data encoded so I need to d …
