Quantcast
Channel: iT邦幫忙
Viewing all articles
Browse latest Browse all 15645

JSP function 問題

$
0
0
程式如下

<%!
public String test()
{
	String rootPath = application.getRealPath("/"); 
	return rootPath ;
}	
%><%
String rootPath = application.getRealPath("/"); 
out.print(rootPath);
%>



為什麼 application.getRealPath("/") 在 test() function 裡無法work, 但在test() 外是可以work的.
試了很多功能, 似乎在 function裡都不能使用.

google也找不到答案, 我想應該是我方向錯了, 我是jsp 新手, 麻煩指教, 感謝~

Viewing all articles
Browse latest Browse all 15645

Trending Articles