participate


Java Servlet - how to convert ascii chars into hex value
<<   Back to Forum  |   Give us Feedback
3 Duke Stars rewarded for this thread
This topic has 3 replies on 1 page.
t@c
Posts:83
Registered: 2/20/04
how to convert ascii chars into hex value   
Jun 2, 2005 8:07 PM

 
hei ppl!

does anyone knows how to convert ascii chars into hex value.. Ex: i wanted to convert string "ABC" to hex value "414243".

any ideas/ tutorial sites wud b deeply apprecited . thx!
 
eadelarosa
Posts:61
Registered: 4/22/02
Re: how to convert ascii chars into hex value      
Jun 2, 2005 8:56 PM (reply 1 of 3)  (In reply to original post )

 
hi t@c,

hope this could give you an idea:

    private String asciiToHex(String ascii){
        StringBuilder hex = new StringBuilder();
        
        for (int i=0; i < ascii.length(); i++) {
            hex.append(Integer.toHexString(ascii.charAt(i)));
        }
        
        System.out.println("Value of ascii " + ascii + ": " + hex.toString());
        
        return hex.toString();
    }


the use of StringBuilder should be self-explanatory.

if you should invoke this method from your simple application, passing
parameter with value "ABC" should give you the result of "414243".

hth.
 
t@c
Posts:83
Registered: 2/20/04
Re: how to convert ascii chars into hex value   
Jun 3, 2005 12:19 AM (reply 2 of 3)  (In reply to #1 )

 
hei sir eds!

actually nakagawa na ako ng function before nabasa ko to.... thx! hahahaha nagkita tayo dito huh... pero cge iaward ko na sa u itong duke dollar
 
eadelarosa
Posts:61
Registered: 4/22/02
Re: how to convert ascii chars into hex value   
Jun 5, 2005 3:38 PM (reply 3 of 3)  (In reply to #2 )

 
pambihira naman, bakit kilala mo ako, pero ikaw di ko kilala? thanks sa duke dollars mo ha. pero please reply, it's been a long time since I last met friends here.
 
This topic has 3 replies on 1 page.
Back to Forum
 
Read the Developer Forums Code of Conduct

Click to email this message Email this Topic

Edit this Topic
  
 
 
Forums Statistics
    Users Online : 25
  • Guests : 132

About Sun forums
  • Oracle Forums is a large collection of user generated discussions. It is here to help you ask questions, find answers, and participate in discussions.

    Check out our guide on Getting started with Oracle Forums for a full walkthrough of how to best leverage the benefits of this community.

Powered by Jive Forums