gpt4 book ai didi

java - 如何使用Java代码和JSP从浏览器播放MP3?

转载 作者:太空宇宙 更新时间:2023-11-04 15:08:54 25 4
gpt4 key购买 nike

我需要的是从 JSP 播放 MP3 文件,但我不知道如何播放。这是我的 Java MP3 播放器代码,它工作正常,问题是我需要在浏览器上播放音乐(类似于 Web 服务)

package reproductor;
import java.io.File;
import javazoom.jlgui.basicplayer.BasicPlayer;

public class Reproductor {
public BasicPlayer player;

public Reproductor() {
player = new BasicPlayer();
}
public void coge(String y){

}
public void Play() throws Exception {
player.play();
}

public void AbrirFichero(String ruta) throws Exception {
player.open(new File(ruta));
player.play();
}

public void Pausa() throws Exception {
player.pause();
}

public void Continuar() throws Exception {
player.resume();
}

public void Stop() throws Exception {
player.stop();
}
public void reproducemp3 () throws Exception{
try {
Reproductor mi_reproductor = new Reproductor();
mi_reproductor.AbrirFichero("C:/Users/Welrk/Downloads/preview.mp3");
mi_reproductor.Play();
} catch (Exception ex) {
System.out.println("Error: " + ex.getMessage());
}
}
public static void main(String args[]) throws Exception{
Reproductor y = new Reproductor();
y.AbrirFichero("C:/Users/Welrk/Downloads/preview.mp3");
y.Play();
}
}

我尝试过这样的事情,但我真的迷失了,你能提供的任何帮助都会很棒

<%@page import="java.io.*" %>
<%@ page import="reproductor.*" %>
<%@ page import="reproductor.main"%>
<%@page import="javazoom.jlgui.basicplayer.BasicPlayer" %>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
String temp="C:/Users/Welrk/Documents/NetBeansProjects/Musica/web/preview.mp3";
Reproductor object = new Reproductor();
object.player.open(new File(temp));
%>
</body>
</html>

最佳答案

除非您的要求不同(您被迫使用 JSP 播放器),否则为什么不依赖 HTML5 音频控制 reference here

<audio controls>
<source src="/pathtoyourfile.mp3" type="audio/mpeg">
</audio>

关于java - 如何使用Java代码和JSP从浏览器播放MP3?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21594979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com