I'm learning J2EE and migrating my AP.NET project into Java.
IN Asp.NET I have Helper class which has methods like encode decode, convert, etc...
In ASP.NET I'm initiating public static class Helper as separate cs file and then I'm calling this static class from code behind when ever I need it.
Helper.Parse();
Helper.Convert();
etc....
How can I achieve the same functionality in Servlet/JSP project?