我正在尝试从 javascript 变量中检索一个值,该变量计算嵌入式音频文件的经过时间。在 servlet 页面中,我尝试使用以下内容提取时间:
String x=(String)req.getParameter("h1"); //h1 is the hidden field associated with the form containing the audio file.
SimpleDateFormat parser = new SimpleDateFormat("HH:mm:ss");
java.util.Date etime = parser.parse(x);
在 IDE 中显示错误,说明:“找不到符号:类 SimpleDateFormat ”
由于 SimpleDateFormat 是 java.text.DateFormat 的一个类,属于 java.lang.Object,所以我认为是隐式导入的。
请帮忙。问候。