MP3 음악 파일 재생
package com.imooc.test;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import javazoom.jl.decoder.Bitstream;
import javazoom.jl.decoder.BitstreamException;
import javazoom.jl.decoder.Header;
import javazoom.jl.decoder.JavaLayerException;
import javazoom.jl.player.Player;
/**
*
* @ClassName: Mp3Player
* @Description: TODO( .mp3 )
* @author Long
* @date 2015 9 15 3:02:09
*/
public class Mp3Player {
/**
*
* @Title: getMp3Time
* @Description: TODO( mp3 )
* @author fyf
* @return time(00:00)
*/
public String getMp3Time(String mp3FilePath) {
try {
File file = new File(mp3FilePath);
if (file.exists() && file.isFile()) {
FileInputStream fis = new FileInputStream(file);
int bytes = fis.available();
Bitstream bit = new Bitstream(fis);
Header header = bit.readFrame();
long time = (long) header.total_ms(bytes);
return formatTime(time);
}
} catch (IOException | BitstreamException e) {
System.out.println(e);
}
return null;
}
/**
*
* @Title: formatTime
* @Description: TODO( :mm:ss; : )
* @author fyf
* @return time(00:00)
*/
public String formatTime(long time) {
SimpleDateFormat dateFormat = new SimpleDateFormat("mm:ss");
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(time);
return dateFormat.format(calendar.getTime());
}
/**
*
* @Title: playerMp3
* @Description: TODO( mp3)
* @author fyf
* @param mp3File
* mp3
*/
public void playerMp3(String mp3FilePath) {
BufferedInputStream buffer = null;
/**
*
*/
try {
buffer = new BufferedInputStream(new FileInputStream(mp3FilePath));
} catch (Exception e) {
try {
buffer = new BufferedInputStream(new URL(mp3FilePath).openStream());
} catch (Exception e1) {
e1.printStackTrace();
}
}
try {
Player player = new Player(buffer);
player.play();
} catch (JavaLayerException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
Mp3Player mp3Player = new Mp3Player();
//
String mp3FilePath = "D:\\CloudMusic\\ .mp3";
String mp3Time = mp3Player.getMp3Time(mp3FilePath);
System.out.println(" :"+mp3Time);
mp3Player.playerMp3(mp3FilePath);
//
mp3FilePath = "http://music.baidutt.com/up/kwcawscw/yyaumy.mp3";
mp3Player.playerMp3(mp3FilePath);
}
}
가방 "jl 1.0.1. jar" 를 가 져 와 야 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.