我正在尝试播放音频文件,当我有一个 .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>