0

我正在尝试播放音频文件,当我有一个 .html 文件时它可以工作,但是当我在 .jsp 文件中运行相同的代码时,无法播放该文件。我正在使用 Netbeans IDE。有人可以指出错误,这是jsp代码。

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
</head>
<body>
    <h1>Hello World!</h1>
    <audio controls>

        <source src="C:\Users\Desktop\1.mp3" type="audio/mpeg">

    </audio>

</body>

4

2 回答 2

1

src属性不应是音频文件的文件位置。相反,它应该是文件的 URL。所以在你的情况下,试试

<audio controls>
     <source src="http://localhost:8080/PathToMp3/1.mp3" type="audio/mpeg">
</audio>

http://localhost:8080/PathToMp3/1.mp3您的 mp3 文件的网址在哪里。

于 2013-03-08T13:13:04.653 回答
0
 <audio controls>
     <source src="http://localhost:8080/PathToMp3/1.mp3" type="audio/mpeg">
 </audio>

如果它不工作使用这个

 <embed src="">
于 2016-07-28T06:57:48.707 回答