문제

Here is I have the result:

<result name="success" type="stream">
   <param name="contentDisposition">attachment;filename="${fileName}"</param>
</result>

How it works now: if my fileName is raghu.txt in DB it will be downloaded as raghu.txt.

What I want: regardless of fileName the output name should be ravi.txt.

도움이 되었습니까?

해결책 2

Try in your action

public String getFileName() {
  return "ravi.txt";
}

When result is executed it will get the dynamic parameter via this method, and it will return the value wanted. But, it's only to show you how dynamic parameters work, actually if the configuration used the dynamic parameter you should modify the action code and setFileName("ravi.txt"); before the result code is returned. Then you can remain the normal getter.

다른 팁

Replace ${fileName} with a fixed string:

<result name="success" type="stream">
   <param name="contentDisposition">attachment;filename="ravi.txt"</param>
</result>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top