1.Formatter类
这有个Formatter类其实是一个翻译器,将格式化字符串翻译成需要的结果,
简单例子:
public static void main(String[] args) {
String a = "West World";
Formatter f = new Formatter(System.err);
f.format("this is the %s\n", a);
}
这样就把输出,出到标准error里了~
Formatter的构造器经过重载可以接受多种输出目的地,最常用的还是PrintStream,OutputStream,File之类的.
2.String.format()静态方法
仿照c语言sprintf() 生成格式化String对象
例子:
public class Four extends Exception {
public Four(String errMess, int x, int y) {
super(String.format("(%d, %d) %s\n", x, y, errMess));
}
public static void main(String[] args) {
try {
throw new Four("Memery Error",123, 456);
} catch (Exception e) {
System.out.println(e);
}
}
}
实际上String.format()内部,创建一个Formatter对象,然后将参数传给Formatter
3.一个十六进制dump工具
package net.mindview.utl;
import java.io.File;
public class Hex {
public static String formate(byte[] data){
StringBuilder result = new StringBuilder();
int n = 0;
for(byte b: data){
if(n % 16 == 0){
result.append(String.format("%05x: ", n));
}
result.append(String.format("%02x ", b));
++n;
if(n % 16 == 0) result.append("\n");
}
result.append("\n");
return result.toString();
}
public static void main(String[] args) {
if(args.length == 0) System.out.println(BinaryFile.read("Hex.class"));
else System.out.println(formate(BinaryFile.read(new File(args[0]))));
}
}
待续–