Java implements a hexadecimal File Viewer Program

Source: Internet
Author: User
Tags readfile

Import java. io. FileInputStream;
Import java. io. IOException;
Import java. io. InputStream;
Public class HexFinder {
Public static String format (byte [] bt ){
Int line = 0;
StringBuilder buf = new StringBuilder ();
For (byte d: bt ){
If (line % 16 = 0)
Buf. append (String. format ("% 05x:", line ));
Buf. append (String. format ("% 02x", d ));
Line ++;
If (line % 16 = 0)
Buf. append ("\ n ");
}
Buf. append ("\ n ");
Return buf. toString ();
}
Public static byte [] readFile (String file) throws IOException {
InputStream is = new FileInputStream (file );
Int length = is. available ();
Byte bt [] = new byte [length];
Is. read (bt );
Return bt;
}
Public static void main (String [] agrs) throws IOException {
Byte [] bt = HexFinder. readFile ("c: \ 1.rar ");
String hexData = HexFinder. format (bt );
System. out. println (hexData );
}
}

Author: yue7603835
 
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.