Test.java 556 Bytes
package com.bsth.service.schedule.rules;

import org.apache.tika.Tika;

import java.io.File;

/**
 * Created by xu on 17/1/3.
 */
public class Test {
    public static void main(String[] args) throws Exception {
        Tika tika = new Tika();
        File file = new File("/Users/xu/Downloads/排班规则练习1.xls");

        // application/vnd.ms-excel
        // application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

        String detecttype = tika.detect(file);
        System.out.println(detecttype);


    }
}