Reputation: 79
I am using a .jsp file and the following line gives an error
<%@page import="java.util.Base64"%>
The import java.util.Base64 cannot be resolved
Upvotes: 4
Views: 22997
Reputation: 393856
java.util.Base64 was added in Java 8. Perhaps you are using an older version of Java.
Upvotes: 7