我创建了一个对象音乐,其属性为名称、作者、艺术家、路径..
这是文件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 数据。
In 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:actionerror of Music 的行中,并获取歌曲的路径并播放路径对应的歌曲。
我能怎么做?