⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hexdump.java

📁 jpeg2000编解码
💻 JAVA
字号:
package cryptix.tools;import java.io.*;import cryptix.util.core.Hex;/** * Reads the file specified as an argument and displays it as hex. * * @since Cryptix 3.1 * @author Ian Brown * @see cryptix.util.core.Hex */public class HexDump{	public static void main(String args[])	throws IOException	{		if (args.length != 1)		{			System.err.println("Usage: java HexDump filename");			System.exit(1);		}		InputStream in = new FileInputStream(args[0]);		byte[] data = new byte[in.available()];		in.read(data);		System.out.println(Hex.dumpString(data));	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -