Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Java 编写媒体应用程序。
给定一个文件,我怎么知道它是音频文件还是视频文件?
顺便说一句,我使用 vlcj 库。
在 Java 7 中,您将能够使用它java.nio.file.probeContentType来执行此操作。
java.nio.file.probeContentType
与此同时,还有许多其他选择可以做这种事情。