Showing posts with label convert string to hex. Show all posts
Showing posts with label convert string to hex. Show all posts

Friday, November 5, 2010

Code Snippet to Convert String to Hex-Decimal

A Small Code Snippet to Convert String to Hex-Decimal

class StringtoHexConvertion {

public static void main(String args[]){

try{
String imputString = "000000000002";
byte[] bytes = imputString .getBytes("US-ASCII");

String str1 = "";
for(int i=0;i
System.out.println("byte value = "+ bytes[i]);
str1 = str1 + Integer.toHexString(bytes[i]);
}
System.out.println(" final String = "+ str1);
}
catch(Exception e){}
}
}

It might be helpful for some sceneries.