Samiksha Sardal
Samiksha Sardal

Reputation: 79

The import java.util.Base64 cannot be resolved

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

Answers (1)

Eran
Eran

Reputation: 393856

java.util.Base64 was added in Java 8. Perhaps you are using an older version of Java.

Upvotes: 7

Related Questions