Can anybody tell how to assign a value coming from \"\" into jsp variable ?
\"
As Tim mentioned, is equivalent to calling the action's getA() method. You can get this using the JSP EL as ${action.a}.
getA()
${action.a}
If you need to evaluate an OGNL expression and store that in an EL variable, you would probably need a custom tag.