Test.java
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. package com.axiosys.bento4;
  2. import java.io.IOException;
  3. public class Test {
  4.     /**
  5.      * @param args
  6.      * @throws IOException 
  7.      * @throws InvalidFormatException 
  8.      */
  9.     public static void main(String[] args) throws IOException, InvalidFormatException {
  10.         AtomList atoms = new AtomList(args[0]);
  11.         
  12.         if (args.length > 1) {
  13.             Atom atom = AtomUtils.findAtom(atoms, args[1]);
  14.             if (atom != null) {
  15.                 System.out.println(atom);
  16.                 byte[] payload = atom.getPayload();
  17.                 System.out.println(new String(payload));
  18.             }
  19.         } else {
  20.             System.out.println(atoms);
  21.         }
  22.     }
  23. }