Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
118 views

Migrating C# code to Java, unsigned short and byte array conversion

I am writing a piece of code in Java (I'm fairly new to Java) that I have previously written in C#. Here's the code and the example in C#. ushort number = 0xAABB; // 43707 byte[] data = new byte[2]; ...
3
votes
2answers
956 views

What is the difference between a word and ushort in C#?

What is the difference between a word and ushort in C#? They are both 16 bits!
2
votes
2answers
187 views

how to get ushort data in c# A909 for 41104?

hello I'm trying to convert an int value to 16 bit unsigned char type (USHORT) in example 41104 is A909 in ushort but in c# i tried code samples as byte[] bytes = BitConverter.GetBytes(41104); ...
2
votes
1answer
358 views

How do I print a short as an unsigned short in Java

I have an array of short whose values range between 0 and the maximum value of a short. I scale the data (to display it as TYPE_USHORT) so that the resulting short values range between 0 and 65535. ...
2
votes
5answers
3k views

C# ushort[] to string conversion; is this possible?

I have a very painful library which, at the moment, is accepting a C# string as a way to get arrays of data; apparently, this makes marshalling for pinvokes easier. So how do I make a ushort array ...
1
vote
1answer
74 views

Marshal ushort[] over network

I created 2 simple console program and a simple structure. M11 Object is the test object that we want to send across network. using System.Runtime.InteropServices; using System; namespace ...
1
vote
2answers
377 views

Converting raw-byte values into Java types

I have a problem with converting raw-bytes values into java types. I am receiving bytes by a datagram socket as a bytes array. I know exactly which bytes means what, but I don't know how to convert ...
1
vote
1answer
180 views

sending ushort ulong byte data over tcpclient object

My application in c# wants to cominicate with 3rd party Tcp server to send data and recieve back response messages ...The syntax of commands has UShort,ULONG,BYTE type datas a sample command that ...
1
vote
1answer
469 views

Byte Array to Word Array to String

I have this byte[]: 00 28 00 60 00 30 10 70 00 22 FF FF. I want to combine each pair of bytes into a word: 0028 0060 0030 1070 0022 FFFF. I also want to turn the word array into a string: "0028 0060 ...
1
vote
3answers
623 views

ushort equivalent

I have an application in C# that I'm trying to convert to java. The C# app has a few variables that are of type ushort. Is there an equivalent in java? Thank you
1
vote
3answers
409 views

Translating Int32 into ushort and back again

I am attempting to devise a system for packing integer values greater than 65535 into a ushort. Let me explain. We have a system which generates Int32 values using an IDENTITY column from SQL Server ...
0
votes
1answer
195 views

convert ushort[] grayscale values to byte[]

I have uhort[] values in the format 0-65536. But I need this grayscale values in byte form! How can I convert my ushort values in byte values? Thanks