JSP Request.getContextPath( ) Metodu
Java Server Pages Dersleri’ne devam ediyoruz.
Bu dersimizde Request.getContextPath( ) metodunun ne olduğunu inceleyeceğiz. Bu metod bulunduğu jsp sayfasının dosya yolunu bize söyler. FTP işlemlerinde dosya gönderim alımlarında bulunulan konumu bize söylemektedir. Kullanımı için;
<%-- Document : index Created on : 28.Mar.2014, 21:56:55 Author : Burak --%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Pages Dersleri</title> </head> <body> <h1>Bulunduğunuz Konum!</h1> <%= request.getContextPath() %> </body> </html>
Bize bulunduğu konumu veren
<%= request.getContextPath() %>
metodunu kullanmamız yeterlidir.
No Comment! Be the first one.