Skip to content

Instantly share code, notes, and snippets.

@asw456
Forked from anonymous/gist:2912716
Created April 30, 2014 08:13
Show Gist options
  • Save asw456/764d961de61a10305aaa to your computer and use it in GitHub Desktop.
Save asw456/764d961de61a10305aaa to your computer and use it in GitHub Desktop.
public class ExampleRowKey
{
long userId;
String applicationId;
public byte[] getBytes() throws IOException
{
ByteArrayOutputStream byteOutput = new ByteArrayOutputStream();
DataOutputStream data = new DataOutputStream(byteOutput);
data.writeLong(userId);
data.writeUTF(applicationId);
return byteOutput.toByteArray();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment