import java.util.Scanner; //32 01 00 AE 90 02 00 01 02 30 03 00 AB 32 31 31 02 00 32 33 33 01 00 CC //输出 //32 33 public class TLV解码 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNextLine()) { String key = sc.nextLine(); String[] arr = sc.nextL...