1

Below code for bytes to kb conversion code its for Static return type.So how can i get a value in many jsp without creation bean.

public static double bytesToKB(int bytes){
  return (double)bytes/1024;
}
Krishna S
  • 17
  • 7

1 Answers1

0

how about this?

<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>

<spring:eval expression="T(com.abc.xyz.YourClassName).bytesToKB(2560)" var="result"></spring:eval>
Spring Eval result: <c:out value="${result }"/>
indybee
  • 1,507
  • 13
  • 17