我创建了一个带有属性名称,作者,艺术家,路径的对象音乐。
以下是文件 listproduct.jsp
中的代码<font color="red"><s:actionerror/></font>
<table align="center">
<tr>
<td width="200" style="background: #4682B4">Name song</td>
<td width="200" style="background: #4682B4">Artist</td>
<td style="background: #4682B4">Play</td>
<td style="background: #4682B4">Delete</td>
</tr>
<s:iterator value="arrayMusic">
<tr>
<td width="200" style="background: #CCCCCC"><s:property value="%{name}" /></td>
<td width="200" style="background: #CCCCCC"><s:property value="%{artist}" /></td>
<td style="background: #CCCCCC"><s:submit name="playBtn" value="Play" theme="simple" action="play"/></td>
<td style="background: #CCCCCC"><s:submit name="delBtn" value="Delete" theme="simple" action="delete"/></td>
</tr>
</s:iterator>
</table>
在 struts.xml
中<action name="play" class="demo.PlaySongAction">
<result name="success">listproduct.jsp</result>
<result name="error">listproduct.jsp</result>
</action>
<action name="delete" class="demo.DeleteSongAction">
<result name="success">listproduct.jsp</result>
<result name="error">listproduct.jsp</result>
</action>
我有List arrayMusic和一些对象Music..s:iterator显示了arrayMusic的数据。
在 PlaySongAction
中public class PlaySongAction extends ActionSupport {
public PlaySongAction() {
}
public String execute() throws Exception {
addActionError("display path of Music");
//Mp3Player is class to play mp3 with path of song
Mp3Player mp=new Mp3Player("path of song");
mp.play();
}
}
我想点击每一行中的播放按钮,其显示路径为s:音乐的动作错误,行中有名称,获取歌曲的路径和路径对应的播放歌曲。
我该怎么办?