package com.java.myapp; public class MyProfile { public String displayName() { return "Win"; } public String displayFullname() { return "Mr.Weerachai Nukitram"; } }
<%@ page import="com.java.myapp.MyProfile" %>
<%-- Document : index Created on : Aug 12, 2013, 10:50:40 AM Author : WEERACHAI --%> <%@ page import="com.java.myapp.MyProfile" %> <%@ page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>ThaiCreate.Com JSP Tutorial</title> </head> <body> <% MyProfile profile = new MyProfile(); out.print(profile.displayName()); out.print("<br>"); out.print(profile.displayFullname()); %> </body> </html>
<%-- Document : index Created on : Aug 12, 2013, 10:50:40 AM Author : WEERACHAI --%> <%! public class MyProfilex { public String displayName() { return "Win"; } public String displayFullname() { return "Mr.Weerachai Nukitram"; } } %> <%@ page import="com.java.myapp.MyProfile" %> <%@ page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>ThaiCreate.Com JSP Tutorial</title> </head> <body> <% MyProfile profile = new MyProfile(); out.print(profile.displayName()); out.print("<br>"); out.print(profile.displayFullname()); %> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท