在Java 1.4中,“ FileHandling.copyFile”是否已弃用?

时间:2018-10-01 08:31:58

标签: jsp

我试图将旧的Servlet和JSP应用程序迁移到新服务器上,但出现错误:

org.apache.jasper.JasperException: Unable to compile class for JSP: 

An error occurred at line: [100] in the jsp file: [/delete.jsp]
FileHandling cannot be resolved
97:     if (fileRef.exists())
98:     {
99:         strServletAction = "deleted";
100:            FileHandling.copyFile(THIS_LOCATION + strTargetFile, ARCHIVE_LOCATION + strFileName);
101:            fileRef.delete();                 // delete file from disc
102:    }else{
103:        strServletAction = "not found";

这是从丢失的软件包中获取的,还是只是不推荐使用? 该Serlvet应该针对J2SDK1.4.2运行。

1 个答案:

答案 0 :(得分:0)

好,结果证明这是来自支持类的实用程序方法,我真正的问题是import语句未使用utils.class 我只需要一个功能,所以我只需将其复制/粘贴到JSP文件中即可。