先将其hex解码然后写输出流/*
* @(#)TestHex.java
*
* Summary: Demonstrate how to handle hex strings.
*
* Copyright: (c) 2009-2010 Roedy Green, Canadian Mind Products, http://mindprod.com
*
* Licence: This software may be copied and used freely for any purpose but military.
* http://mindprod.com/contact/nonmil.html
*
* Requires: JDK 1.6+
*
* Created with: IntelliJ IDEA IDE.
*
* Version History:
* 1.0 2009-06-05 - initial version.
*/
package com.mindprod.example;
import static java.lang.System.out;
/**
* Demonstrate how to handle hex strings.
*
* @author Roedy Green, Canadian Mind Products
* @version 1.0 2009-06-05 - initial version.
* @since 2009-06-05
*/
public final class TestHex
{
/**